1. 管理者帳號登入電腦
2. 執行 regedit
3. 找到下面這個機碼位置
HKEY_LOCAL_MACHINE\SOFTWARE\MICROSOFT\WINDOWS NT\CurrentVersion\ProfileList
4. 尋找 USER 機碼 S-1-5-21-xxxxx 機碼,有 ProfileImagePath 路徑為C:\Users\TEMP
把此機碼刪除
5. 找到機碼後面有bak的 S-1-5-21-xxxxx & S-1-5-21xxxxx.bak(前面都一樣,只有後面有一個會加上.bak)
6. 在 S-1-5-21-xxxxx.bak 重新命名,把後面的 .bak 刪除
7. 將 S-1-5-21-xxxxx 裏的 RefCount 數值修改為0,State 數值修改為0
8. reboot
2020年1月7日 星期二
2019年7月8日 星期一
移除 Windows 10 討厭的 APP
用管理者執行 PowerShell
安裝 APP
Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
卸載所有 APP
Get-AppxPackage -AllUsers | Remove-AppxPackage
卸載目前 User 所有APP
Get-AppxPackage -User | Remove-AppxPackage
3D Builder
get-appxpackage *3dbuilder* | remove-appxpackage
時鐘&鬧鐘
get-appxpackage *alarms* | remove-appxpackage
App Connector
get-appxpackage *appconnector* | remove-appxpackage
App Installer
get-appxpackage *appinstaller* | remove-appxpackage
日曆與郵件一起刪
get-appxpackage *communicationsapps* | remove-appxpackage
計算機
get-appxpackage *calculator* | remove-appxpackage
相機
get-appxpackage *camera* | remove-appxpackage
feedback
get-appxpackage *feedback* | remove-appxpackage
Get Office
get-appxpackage *officehub* | remove-appxpackage
Get Started or Tips
get-appxpackage *getstarted* | remove-appxpackage
Get Skype
get-appxpackage *skypeapp* | remove-appxpackage
Groove Music
get-appxpackage *zunemusic* | remove-appxpackage
Groove Music & Movies & TV
get-appxpackage *zune* | remove-appxpackage
地圖
get-appxpackage *maps* | remove-appxpackage
Messaging & Skype Video
get-appxpackage *messaging* | remove-appxpackage
Microsoft Solitaire Collection
get-appxpackage *solitaire* | remove-appxpackage
Microsoft Wallet
get-appxpackage *wallet* | remove-appxpackage
Microsoft Wi-Fi
get-appxpackage *connectivitystore* | remove-appxpackage
財經
get-appxpackage *bingfinance* | remove-appxpackage
財經&新聞&運動&天氣
get-appxpackage *bing* | remove-appxpackage
電影與電視
get-appxpackage *zunevideo* | remove-appxpackage
新聞
get-appxpackage *bingnews* | remove-appxpackage
OneNote
get-appxpackage *onenote* | remove-appxpackage
付費 Wi-Fi & Cellular
get-appxpackage *oneconnect* | remove-appxpackage
Paint 3D
get-appxpackage *mspaint* | remove-appxpackage
聯絡人
get-appxpackage *people* | remove-appxpackage
電話
get-appxpackage *commsphone* | remove-appxpackage
Phone Companion
get-appxpackage *windowsphone* | remove-appxpackage
電話&Phone Companion
get-appxpackage *phone* | remove-appxpackage
相片
get-appxpackage *photos* | remove-appxpackage
運動
get-appxpackage *bingsports* | remove-appxpackage
自黏便箋
get-appxpackage *sticky* | remove-appxpackage
Sway
get-appxpackage *sway* | remove-appxpackage
View 3D
get-appxpackage *3d* | remove-appxpackage
錄音
get-appxpackage *soundrecorder* | remove-appxpackage
天氣
get-appxpackage *bingweather* | remove-appxpackage
Windows Holographic
get-appxpackage *holographic* | remove-appxpackage
Windows Store
get-appxpackage *windowsstore* | remove-appxpackage
Xbox
get-appxpackage *xbox* | remove-appxpackage
安裝 APP
Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
卸載所有 APP
Get-AppxPackage -AllUsers | Remove-AppxPackage
卸載目前 User 所有APP
Get-AppxPackage -User | Remove-AppxPackage
3D Builder
get-appxpackage *3dbuilder* | remove-appxpackage
時鐘&鬧鐘
get-appxpackage *alarms* | remove-appxpackage
App Connector
get-appxpackage *appconnector* | remove-appxpackage
App Installer
get-appxpackage *appinstaller* | remove-appxpackage
日曆與郵件一起刪
get-appxpackage *communicationsapps* | remove-appxpackage
計算機
get-appxpackage *calculator* | remove-appxpackage
相機
get-appxpackage *camera* | remove-appxpackage
feedback
get-appxpackage *feedback* | remove-appxpackage
Get Office
get-appxpackage *officehub* | remove-appxpackage
Get Started or Tips
get-appxpackage *getstarted* | remove-appxpackage
Get Skype
get-appxpackage *skypeapp* | remove-appxpackage
Groove Music
get-appxpackage *zunemusic* | remove-appxpackage
Groove Music & Movies & TV
get-appxpackage *zune* | remove-appxpackage
地圖
get-appxpackage *maps* | remove-appxpackage
Messaging & Skype Video
get-appxpackage *messaging* | remove-appxpackage
Microsoft Solitaire Collection
get-appxpackage *solitaire* | remove-appxpackage
Microsoft Wallet
get-appxpackage *wallet* | remove-appxpackage
Microsoft Wi-Fi
get-appxpackage *connectivitystore* | remove-appxpackage
財經
get-appxpackage *bingfinance* | remove-appxpackage
財經&新聞&運動&天氣
get-appxpackage *bing* | remove-appxpackage
電影與電視
get-appxpackage *zunevideo* | remove-appxpackage
新聞
get-appxpackage *bingnews* | remove-appxpackage
OneNote
get-appxpackage *onenote* | remove-appxpackage
付費 Wi-Fi & Cellular
get-appxpackage *oneconnect* | remove-appxpackage
Paint 3D
get-appxpackage *mspaint* | remove-appxpackage
聯絡人
get-appxpackage *people* | remove-appxpackage
電話
get-appxpackage *commsphone* | remove-appxpackage
Phone Companion
get-appxpackage *windowsphone* | remove-appxpackage
電話&Phone Companion
get-appxpackage *phone* | remove-appxpackage
相片
get-appxpackage *photos* | remove-appxpackage
運動
get-appxpackage *bingsports* | remove-appxpackage
自黏便箋
get-appxpackage *sticky* | remove-appxpackage
Sway
get-appxpackage *sway* | remove-appxpackage
View 3D
get-appxpackage *3d* | remove-appxpackage
錄音
get-appxpackage *soundrecorder* | remove-appxpackage
天氣
get-appxpackage *bingweather* | remove-appxpackage
Windows Holographic
get-appxpackage *holographic* | remove-appxpackage
Windows Store
get-appxpackage *windowsstore* | remove-appxpackage
Xbox
get-appxpackage *xbox* | remove-appxpackage
訂閱:
文章 (Atom)
OUTLOOK 無法加密連線 POP3S SMTPS
最近郵件主機加上了憑證,公司一堆老舊電腦卻無法連線, 原先以為是主機設定的問題搞了很久, 最終還是要谷歌大師出馬, 參考這篇 文章 就解決了
-
https://support.microsoft.com/zh-tw/help/816042/how-to-configure-an-authoritative-time-server-in-windows-server 懶人法:下載這個檔案 http://go.mic...
-
dcdiag.exe /s:<Directory Server>[:<LDAP Port>] [/u:<Domain>\<Username> /p:*|<Password>|""] ...