added files and folders

This commit is contained in:
2023-03-05 21:08:50 -06:00
parent 68e1aeeb19
commit bd986b58f0
124 changed files with 2510 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
"%ProgramFiles%\Windows Defender\MpCmdRun.exe" -removedefinitions -dynamicsignatures
"%ProgramFiles%\Windows Defender\MpCmdRun.exe" -SignatureUpdate
exit

View File

@@ -0,0 +1,6 @@
pushd %~dp0
if not exist "C:\Scripts" mkdir "C:\Scripts"
copy /y "\\WINSRVR2019-01\PackageShare\Installers\AutomaticallyInstallDefenderUpdates\AutomaticallyInstallDefenderUpdates.bat" "C:\Scripts"
schtasks /ru "SYSTEM" /create /sc hourly /mo 1 /st 23:00 /tn "Install Windows Defender Updates" /tr C:\Scripts\AutomaticallyInstallDefenderUpdates.bat /f
popd
exit 0

View File

@@ -0,0 +1,6 @@
pushd %~dp0
if not exist "C:\Scripts" mkdir "C:\Scripts"
copy /y AutomaticallyInstallDefenderUpdates.bat "C:\Scripts"
schtasks /ru "SYSTEM" /create /sc hourly /mo 1 /st 23:00 /tn "Install Windows Defender Updates" /tr C:\Scripts\AutomaticallyInstallDefenderUpdates.bat /f
popd
pause