.
This commit is contained in:
parent
b6749a3470
commit
89bc82e5cd
@ -16,25 +16,33 @@ if NOT EXIST %SOFTWARE%\%MSI% (
|
|||||||
echo ####### %0 #######
|
echo ####### %0 #######
|
||||||
|
|
||||||
cd %SOFTWARE%
|
cd %SOFTWARE%
|
||||||
@echo on
|
|
||||||
msiexec /uninstall %MSI% /passive
|
msiexec /uninstall %MSI% /passive
|
||||||
|
@echo on
|
||||||
msiexec /i %MSI% /passive
|
msiexec /i %MSI% /passive
|
||||||
@echo off
|
@echo off
|
||||||
cd %OPT%
|
cd %OPT%
|
||||||
|
|
||||||
echo renaming Chrome desktop shortcut ...
|
|
||||||
move /Y %PUBLIC%\Desktop\"Google Chrome.lnk" %PUBLIC%\Desktop\Chrome.lnk 2>nul
|
|
||||||
|
|
||||||
echo importing registry settings ...
|
echo importing registry settings ...
|
||||||
reg import %CONFIG%
|
reg import %CONFIG%
|
||||||
|
|
||||||
rem unpin chrome icon frpom taskbar ...
|
rem unpin chrome icon from taskbar ...
|
||||||
|
echo.
|
||||||
call %SCRIPTS%\unpin-taskbar-icons.cmd
|
call %SCRIPTS%\unpin-taskbar-icons.cmd
|
||||||
|
echo.
|
||||||
|
|
||||||
echo disabling update tasks ...
|
echo disabling update tasks ...
|
||||||
schtasks /Change /TN "GoogleUpdateTaskMachineCore{FF03DE7D-B6BB-4BD9-B599-5500A9284F84}" /disable
|
schtasks /Change /TN "GoogleUpdateTaskMachineCore{FF03DE7D-B6BB-4BD9-B599-5500A9284F84}" /disable
|
||||||
schtasks /Change /TN "GoogleUpdateTaskMachineUA{947CFA0A-AC3E-424D-99CD-38EE819AB072}" /disable
|
schtasks /Change /TN "GoogleUpdateTaskMachineUA{947CFA0A-AC3E-424D-99CD-38EE819AB072}" /disable
|
||||||
|
|
||||||
|
echo renaming chrome desktop shortcut ...
|
||||||
|
move /Y %PUBLIC%\Desktop\"Google Chrome.lnk" %PUBLIC%\Desktop\Chrome.lnk 2>nul
|
||||||
|
|
||||||
|
echo sleeping 5 seconds ...
|
||||||
|
ping 127.0.0.1 -n 5 > NUL 2>&1
|
||||||
|
|
||||||
|
echo cleanup ...
|
||||||
|
del /F /Q "%USERPROFILE%\Desktop\Google Chrome.lnk" 2>nul
|
||||||
|
|
||||||
rem refresh desktop (W10 style)
|
rem refresh desktop (W10 style)
|
||||||
ie4uinit.exe -show
|
ie4uinit.exe -show
|
||||||
|
|
||||||
|
@ -5,14 +5,14 @@
|
|||||||
; LICENSE : GPL
|
; LICENSE : GPL
|
||||||
; AUTHOR : Michael H.G. Schmidt
|
; AUTHOR : Michael H.G. Schmidt
|
||||||
; EMAIL : michael@schmidt2.de
|
; EMAIL : michael@schmidt2.de
|
||||||
; DATE : 20230214
|
; DATE : 20230309
|
||||||
; ------------------------------------------------------------
|
; ------------------------------------------------------------
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|
||||||
; VARIABLES
|
; VARIABLES
|
||||||
Global Security=#True
|
Global Security=#True
|
||||||
Global DefaultStartPage$="http://Bing.de"
|
Global DefaultStartPage$="https://duckduckgo.com"
|
||||||
Global StartPage$=DefaultStartPage$
|
Global StartPage$=DefaultStartPage$
|
||||||
|
|
||||||
Procedure ResizeWebWindow()
|
Procedure ResizeWebWindow()
|
||||||
@ -94,7 +94,7 @@ If OpenWindow(0, 100, 200, 800, 600, "MiniBrowser", #PB_Window_MinimizeGadget |
|
|||||||
ButtonGadget(5, 0, 3, 25, 25, "Go")
|
ButtonGadget(5, 0, 3, 25, 25, "Go")
|
||||||
FrameGadget(6, 0, 30, 0, 2, "", 2) ; Nice little separator
|
FrameGadget(6, 0, 30, 0, 2, "", 2) ; Nice little separator
|
||||||
|
|
||||||
WebGadget(10, 1, 37, 1278, 732,"")
|
WebGadget(10, 1, 37, 1278, 732, "")
|
||||||
AddKeyboardShortcut(0, #PB_Shortcut_Return, 0)
|
AddKeyboardShortcut(0, #PB_Shortcut_Return, 0)
|
||||||
|
|
||||||
; Use bindevent() to have a realtime window resize
|
; Use bindevent() to have a realtime window resize
|
||||||
@ -134,8 +134,7 @@ If OpenWindow(0, 100, 200, 800, 600, "MiniBrowser", #PB_Window_MinimizeGadget |
|
|||||||
EndIf
|
EndIf
|
||||||
|
|
||||||
; IDE Options = PureBasic 5.73 LTS (Windows - x64)
|
; IDE Options = PureBasic 5.73 LTS (Windows - x64)
|
||||||
; CursorPosition = 98
|
; CursorPosition = 16
|
||||||
; FirstLine = 77
|
|
||||||
; Folding = -
|
; Folding = -
|
||||||
; EnableXP
|
; EnableXP
|
||||||
; UseIcon = internet_free_icon.ico
|
; UseIcon = internet_free_icon.ico
|
||||||
|
Loading…
Reference in New Issue
Block a user