2016年6月28日 星期二

Windows10 開始失效 釘選失效

Get-AppxPackage | % { Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml" -verbose }

Windows10 health Check

Dism /Online /Cleanup-Image /CheckHealth
Dism /Online /Cleanup-Image /ScanHealth

Dism /Online /Cleanup-Image /RestoreHealth

快速鍵

windows+Tab:開啟多重虛擬桌面功能

windows+Ctrl+D:開啟一個新的虛擬桌面

windows+Ctrl+F4:關閉虛擬桌面

windows+Ctrl+/右:切換虛擬桌面

windows+A:開啟重要訊息中心

windows+C:透過語音功能啟動 Cortana

 windows+D:顯示桌面

windows+E:打開檔案瀏覽器

windows+G:打開 Xbox 遊戲的錄製工具,讓你可以錄製遊戲或擷取遊戲畫面

windows+H:開啟 windows 10 app 的分享功能

windows+I:打開 windows 10 的設定功能

windows+K:啟動和無線顯示器或音響設備的連接功能

windows+L:鎖定螢幕畫面

windows+P:投影螢幕畫面

windows+R:開啟命令提示字元

windows+S:啟動 Cortana 功能

windows+Shift+/右:讓 app 在不同的顯示器之間移動


windows +///右方向鍵:把視窗貼齊到畫面邊緣

我的最愛Favorites Win10

C:\Users\Book\AppData\Local\Packages\Microsoft.MicrosoftEdge_8wekyb3d8bbwe\AC\MicrosoftEdge\User\Default\Favorites

Windows Firewall




Import-Module NetSecurity

Set-NetFirewallRule -DisplayName “File and Printer Sharing (Echo Request – ICMPv4-In)” -enabled True



Import-Module NetSecurity
New-NetFirewallRule -Name Allow_Ping -DisplayName “Allow Ping”  -Description “Packet Internet Groper ICMPv4” -Protocol ICMPv4 -IcmpType 8 -Enabled True -Profile Any -Action Allow

netsh advfirewall>FIREWALL add rule name=”KMS” dir=in action=allow protocol=tcp
localport=1688


2016年4月8日 星期五

disable OWA URL redirects in emails




 redir.aspx?REF=pq5G9nmgd7aSq8xaGpRVRztdi1S-1xbct4_CrLYu-1bT2zdyiF_TCAFodHRwOi8vd3d3Mi5jY2gub3JnLnR3L2Q4MzAwL3NlYXJjaC8.

 set my URL length to 6144 and query length to 4096 and have not had an issue with this since.

http://www.iis.net/configreference/system.webserver/security/requestfiltering/requestlimits



2016年3月31日 星期四

重安裝 Uninstall Movies & TV


First, open PowerShell as administrator. Open the Start menu, search for “PowerShell,” right-click the PowerShell shortcut, and select “Run as administrator.” Agree to the UAC prompt.



 

Get-AppxPackage *zunevideo* | Remove-AppxPackage

 

Get-AppxPackage *zunevideo* | Add-AppxPackage

Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}