Get-AppxPackage > C:/tmp/new.txt
to get list of application names,
then run Get-AppxPackage *name* | Remove-AppxPackage
to delete themPATH
;
Visual Effects: Show thumbnails, Show window contents, Smooth edges, Smooth-scrollPrograms (all users) | Start Menu | Taskbar from Left | Taskbar from Right | Gadgets | Keyboard shortcuts Ctrl+Alt+ |
Science Office System Accessories Multimedia Internet |
AVSearch Mozilla Firefox Media Player Classic |
Search Cortana Microsoft Edge File Explorer PSPad |
Show desktop Time Network Battery Lingvo |
Projects System Research Educational Science All CPU Meter Network Meter |
Beyond Compare Cartes du Ciel Corel Draw Internet Explorer Mozilla Firefox Google cHrome Inkscape Media pLayer Maple Adobe Photoshop (Q) Resource Monitor Registry Editor WinSCP VPN client Microsoft Word Microsoft eXcel |
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Run
powercfg /option /output filename.html
, where option is one of batteryreport, energy, sleepstudy.HKLM\SYSTEM\CurrentControlSet\Control\Power\CsEnabled
to 0.HKCU\Control Panel\Desktop
,
edit WindowsMetrics.reg
file and run itpnputil /disable-device "device instance ID"
and pnputil /enable-device "device instance ID"
, create its shorcut, check "Run as admin" box, and asign a shortcut key.dism /online /get-packages
,
e.g. Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~x86~ru-RU~10.0.14393.0
lp_d17ad4e6831135935760d21e2c8689b667430d0b.cab
dism /online /add-package /packagepath:C:\path_to_cabfile\cabfile.cab
then dism /online /get-packages
dism /online /remove-package /packagename:current_pack_name
HKLM\SOFTWARE\Policies\Microsoft\Windows\Network Connections\NC_ShowSharedAccessUI=0
as DWORD (32-bit) Value
.HKLM\SYSTEM\CurrentControlSet\Services\icssvc\Settings\WifiMaxPeers=X
as DWORD (32-bit) Value
.foreach($i in ls -recurse -filter "*.html") {$temp = Get-Content $i.fullname; Out-File -filepath $i.fullname -inputobject $temp -encoding utf8 -force}