슈마서버 웹으로 IPMI 접속시 아래 팝업창 제거방법
You need the latest Java(TM) Runtime Environment. Would you like to update now?
출처 : 슈퍼마이트로 IPMI웹 자바 관련 :: 2cpu, 지름이 시작되는 곳!
크롬에 Tampermonkey 확장 프로그램 설치 후 아래 @match의 ?.? 부분 수정하신 뒤 아래 스크립트 넣으시면 팝업창이 뜨지 않습니다.
// ==UserScript==
// @name DisableJavaUpdateConfirm
// @version 0.1
// @author You
// @match https://192.168.?.?/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
window._confirm = confirm;
window.confirm = function(text){
if(text === "You need the latest Java(TM) Runtime Environment. Would you like to update now?"){
return false;
}
return window._confirm(text);
}
})();
반응형
'Hardware' 카테고리의 다른 글
ir센서로 에어컨 원격제어, nodemcu(esp8266), kc-005 (0) | 2024.08.08 |
---|---|
SSD 성능비교 (M.2, SATA, HDD, USB메모리) (0) | 2021.10.30 |
벤더기준 하드디스크 선택요령 (0) | 2020.11.03 |
그래픽카드 길이 분포 (2020.03.25) (0) | 2020.03.26 |
Passmark 점수 하향조정 (0) | 2020.03.23 |
댓글