41 lines
1.4 KiB
Batchfile
41 lines
1.4 KiB
Batchfile
Rem 根据 Netscape 版本执行适当的命令
|
||
if "#NS4VER#" == "4.5x" goto NS45
|
||
|
||
Rem
|
||
Rem Netscape 4.0x
|
||
Rem 除非已经复制,将默认配置文件复制到用户
|
||
Rem 的主目录。
|
||
Rem
|
||
|
||
If Exist "%RootDrive%\NS40" Goto Done
|
||
If Not Exist "#PROFDIR#" Goto Done
|
||
Xcopy "#PROFDIR#" "%RootDrive%\NS40" /E /I /K >Nul: 2>&1
|
||
goto Done
|
||
|
||
:NS45
|
||
Rem
|
||
Rem Netscape 4.5x
|
||
Rem 在用户的 Netscape 配置文件目录上设置 ACL;这样,只有
|
||
Rem 这些用户可以访问。
|
||
Rem
|
||
|
||
..\ACRegL "%Temp%\NS45_1.Cmd" NSHomeDir "HKCU\Software\Netscape\Netscape Navigator\biff" "CurrentUser" ""
|
||
If ErrorLevel 1 Goto Done
|
||
Call %Temp%\NS45_1.Cmd
|
||
Del %Temp%\NS45_1.Cmd >Nul: 2>&1
|
||
|
||
If Not Exist "#NSUSERDIR#\%NSHomeDir%" Goto Done
|
||
If Exist "#NSUSERDIR#\%NSHomeDir%\com45usr.dat" Goto Done
|
||
Rem
|
||
Rem 复制 Netscape 快速启动 .lnk 文件
|
||
Rem
|
||
If Exist "#NS40INST#\Netscape Composer.lnk" copy "#NS40INST#\Netscape Composer.lnk" "%UserProfile%\%App_Data%\Microsoft\Internet Explorer\Quick Launch" /y
|
||
If Exist "#NS40INST#\Netscape Messenger.lnk" copy "#NS40INST#\Netscape Messenger.lnk" "%UserProfile%\%App_Data%\Microsoft\Internet Explorer\Quick Launch" /y
|
||
If Exist "#NS40INST#\Netscape Navigator.lnk" copy "#NS40INST#\Netscape Navigator.lnk" "%UserProfile%\%App_Data%\Microsoft\Internet Explorer\Quick Launch" /y
|
||
|
||
cacls "#NSUSERDIR#\%NSHomeDir%" /e /t /g %username%:F
|
||
cacls "#NSUSERDIR#\%NSHomeDir%" /e /t /r "Terminal Server User"
|
||
cacls "#NSUSERDIR#\%NSHomeDir%" /e /t /r "Users"
|
||
echo done > "#NSUSERDIR#\%NSHomeDir%\com45usr.dat"
|
||
:Done
|