Bat 신뢰할 수 있는 사이트로 Cognos 자동 추가

1474 단어 BatCognos
고객의 요구로 인해 수동으로 COGNOS 서버 IP와 일부 브라우저 설정 수정을 추가하고 COGNOS EXCEL을 내보내기 위해 알림 메시지가 나타나지 않습니다.인터넷을 참고하여 관련 방법을 결합하여 정리하다.
이 일련의 문제를 자동으로 해결하기 위해 BAT 스크립트를 쓰기로 결정했습니다.
CognosPrompt.bat
@echo off
:: COGNOS Excel 。
echo  ...
::Office 2003
reg add HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Excel\Security /v ExtensionHardening /t REG_DWORD /d 0 /f
::Office 2007
reg add HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Excel\Security /v ExtensionHardening /t REG_DWORD /d 0 /f
::Office 2010
reg add HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Excel\Security /v ExtensionHardening /t REG_DWORD /d 0 /f


:: COGNOS , COGNOS IP 。
:: Cognos IP 
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Ranges\Range2" /v :Range /t REG_SZ /d 127.0.0.1 /f
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Ranges\Range2" /v https /t REG_DWORD /d 1 /f


::XSS     
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\3" /v 1409 /t REG_DWORD /d 3 /f
::   
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\3" /v 2301 /t REG_DWORD /d 3 /f
::   
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\3" /v 1803 /t REG_DWORD /d 0 /f
echo  ...
echo  ...

:: 2 , 
ping -n 2 127.0.0.1>nul

exit 0

좋은 웹페이지 즐겨찾기