Remove HP Software – OEM Build 1903

For those in the know, remove this software…       Notes Return all MS Apps Get-AppxPackage -AllUsers Remove Apps that Match String Get-AppxPackage *xboxapp* | Remove-AppxPackage   Remove Specific App Remove-AppxPackage -AllUsers -Package “AD2F1837.HPJumpStarts_1.5.1296.0_x64__v10z8vjag6ke6”   From the Command Line powershell.exe -command “Remove-AppxPackage -AllUsers -Package AD2F1837.HPJumpStarts_1.5.1296.0_x64__v10z8vjag6ke6”   HP App Details   Other Apps 7EE7776C.LinkedInforWindows_2.0.1.0_neutral__w1wdnht996qgy Microsoft.XboxSpeechToTextOverlay_1.21.13002.0_x64__8wekyb3d8bbwe Read More …

Batch – Disable & Remove WAN Miniport

Download devcon   Create batch script :: MrNetTek :: eddiejackson.net/blog :: 4/27/2020 :: free for public use :: free to claim as your own @echo off cd “%~dp0” devcon disable “ms_pppoeminiport” devcon disable “ms_pptpminiport” devcon disable “ms_agilevpnminiport” devcon disable “ms_ndiswanbh” devcon disable “ms_ndiswanip” devcon disable “ms_sstpminiport” devcon disable “ms_ndiswanipv6” devcon disable “ms_l2tpminiport” devcon remove “ms_pppoeminiport” Read More …

Windows – Delete Built-in Administrator Account

Manual Method Add full control registry permissions HKEY_LOCAL_MACHINE\SAM\SAM Delete registry key HKEY_LOCAL_MACHINE\SAM\SAM\Domains\Account\Users\Names\Administrator Verify Check Computer Management > Local Users and Groups > Users   Remote Method Command PsExec64.exe \\%computername% -accepteula -nobanner -i -s cmd /c “echo . | powershell.exe (Remove-Item HKLM:\SAM\SAM\Domains\Account\Users\Names\Administrator -Force)”

Windows – Intune – Disable Smart Screen

Command reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer” /v SmartScreenEnabled /t REG_SZ /d Off /f /reg:64   Intune – Device Configuration Profile MS Intune > Device configuration > Profile > Create profile > Name > Windows 10 and later > Profile type Endpoint Protection > click Create button > Name > Description > click on Microsoft Defender SmartScreen > Read More …

Intune – SCCM – Change Time Zone

Various methods of changing the time zone. PowerShell and command methods can be used in SCCM and Intune. PowerShell Command tzutil /s “Eastern Standard Time” Intune – Custom Device Configuration Profile * requires 1903 and newer Microsoft Intune > Device configuration > Profiles > Create Profile > Windows 10 and later > Custom > click Read More …

Intune – Set up Power Management

#1 Access Intune > click Device configuration > click Profiles > click Create profile button #2 Select Platform: Windows 10 or later > click Profile: choose Custom > click Create button > Enter Name and Description  > In Custom OMA-URI Settings, click Add.   #3 Add each of these:   Name: DisplayOffTimeoutOnBattery OMA-URI: ./Device/Vendor/MSFT/Policy/Config/Power/DisplayOffTimeoutOnBattery Data Read More …