Batch – Create PFX Certificate – Sign Code or Package; MSIX

:: MrNetTek :: https://eddiejackson.net/blog :: 9/16/2020 :: free for public use :: free to claim as your own @echo off cd “%~dp0” :: STEP 1 :: C:\Program Files (x86)\Windows Kits\10\bin\10.0.17763.0\x86 makecert.exe ^ -n “CN=CodeSign” ^ -r ^ -pe ^ -a sha512 ^ -len 4096 ^ -cy authority ^ -sv CodeSign.pvk ^ CodeSign.cer :: STEP 2 Read More …

Batch – Clear Windows Logs

FOR /F “tokens=*” %1 in (‘wevtutil.exe el’) DO wevtutil.exe cl “%1” exit /b 0   Notes Clear events after saving log: wevtutil cl Application /bu:C:\backup\back.evtx Return names of logs: wevtutil el Status of log: wevtutil gli Application   All Options wevtutil [{el | enum-logs}] [{gl | get-log} <Logname> [/f:<Format>]] [{sl | set-log} <Logname> [/e:<Enabled>] [/i:<Isolation>] Read More …

PowerShell – Generate Script – Run Script – Use Toasts v1

Screenshots & Flow Show Toast 1   Run script.cmd (generated by PowerShell)   Show Toast 2   Code     Notes   Balloon Tip – Toast (older post demonstrating clickable events) Disable Quiet Hours Key: HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\QuietHours Type: DWORD Value: Enable Data: 0 Enable Notifications Key: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\PushNotifications Type: DWORD Value: ToastEnabled Data: 1 Key: HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explor‌​er Type: Read More …

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 …

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 …

Adobe Creative Cloud

Description Adobe Creative Cloud is a set of applications and services from Adobe Systems that gives subscribers access to a collection of software used for graphic design, video editing, web development, photography, along with a set of mobile applications and also some optional cloud services. more…   Download Adobe Webpage ACCCx5_1_0_407.zip (233 MB)  ACCCx5_0_0_354.zip (248 Read More …