By default gpedit.msc is not enabled on Windows 10 Home (inclusing 7/8.1 editions). The good news it’s possible to enable this feature. @echo off pushd “%~dp0″ dir /b %SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~3*.mum >List.txt dir /b %SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package~3*.mum >>List.txt for /f %%i in (‘findstr /i . List.txt 2^>nul’) do dism /online /norestart /add-package:”%SystemRoot%\servicing\Packages\%%i” pause CopyRead More →

Recently I wrote a couple of scripts to clear the browsing history and cache for IE, Firefox and Chrome Internet Explorer (Powershell) $t_path_7 = “C:\Users\$env:username\AppData\Local\Microsoft\Windows\Temporary Internet Files” $c_path_7 = “C:\Users\$env:username\AppData\Local\Microsoft\Windows\Caches” $d_path_7 = “C:\Users\$env:username\Downloads” $temporary_path = Test-Path $t_path_7 $check_cache = Test-Path $c_path_7 $check_download = Test-Path $d_path_7 if($temporary_path -eq $True -And $check_casheRead More →

With the amount of ransomware cases seeming to increase every day this is coming more and more a problem. Ransomware cost hundreds of millions in damages worldwide en is increasing rapidly. Modern total data protection solutions take snapshot based incremental backups on frequently based. if your business suffers a ransomwareRead More →