I am making an automatic windows installer because it is always a big chore to refresh my computer
With regards to everything I install it unattended with
Code: Select all
start /b /wait "" "Everything-1.5.0.1396a.x64-Setup.exe" /SBind ESC to close tab
Code: Select all
powershell -command "(Get-Content \"$env:USERPROFILE\AppData\Roaming\Everything\Everything-1.5a.ini\") -replace '^show_window_key=0$', 'show_window_key=370' | Set-Content \"$env:USERPROFILE\AppData\Roaming\Everything\Everything-1.5a.ini\""Code: Select all
powershell -command "(Get-Content \"$env:USERPROFILE\AppData\Roaming\Everything\Everything-1.5a.ini\") -replace '^show_window_key=0$', 'show_window_key=370' | Set-Content \"$env:USERPROFILE\AppData\Roaming\Everything\Everything-1.5a.ini\""Code: Select all
powershell -command "(Get-Content \"$env:USERPROFILE\AppData\Roaming\Everything\Everything-1.5a.ini\") -replace '^show_window_key=0$', 'show_window_key=370' | Set-Content \"$env:USERPROFILE\AppData\Roaming\Everything\Everything-1.5a.ini\""Code: Select all
powershell -command "(Get-Content \"$env:USERPROFILE\AppData\Roaming\Everything\Everything-1.5a.ini\") -replace '^single_click_open=0$', 'single_click_open=1' | Set-Content \"$env:USERPROFILE\AppData\Roaming\Everything\Everything-1.5a.ini\""Code: Select all
powershell -command "(Get-Content \"$env:USERPROFILE\AppData\Roaming\Everything\Everything-1.5a.ini\") -replace '^on_top=0$', 'on_top=2' | Set-Content \"$env:USERPROFILE\AppData\Roaming\Everything\Everything-1.5a.ini\""However there are 3 more things I am not able to figure out how to do from the command line
They are
general -> es:URL protocol
general -> show Everything context menu
general -> EFU file association
Is there a way to enable these from the command line ?