發表文章

Install UiPath V2022.4.10 get error message "Machine-level installs are not permitted while at least one user-scoped installation exists."

圖片
Install UiPath V2022.4.10 get error message "Machine-level installs are not permitted while at least one user-scoped installation exists." Solution:  Uninstall all UiPath products and delete following registry than reinstall:  Computer\HKEY_USERS\.DEFAULT\Software\Microsoft\Installer\Products\FCC05B71CFD0BC54CBF3445157BF08F0

Fix “The Remote Computer Requires Network Level Authentication (NLA)” Error on Windows

Fix “The Remote Computer Requires Network Level Authentication (NLA)” Error on Windows 透過登錄編輯程式停用網路層級驗證 1. 按下Win+R,輸入「regedit」並點選確定。 2. Selet "File" > "Connect Network Registry" 3. Enter the computer name which you want to remote, click OK.  4. Open the remote computer name and go to "HKEY_LOCAL_MACHINE" > SYSTEM > ControlSet001 > Control >Terminal Server > WinStations > RDP-Tcp 5. 從視窗右側找到「SecurityLayer」以及「UserAuthentication」。 6. 連線兩下滑鼠打開SecurityLayer,並將它的數值資料修改為0。然後,UserAuthentication 並將它的數值資料修改為0。

How to get offline installer for Store Apps in Windows 11 & 10

How to get offline installer for Store Apps in Windows 11 & 10  https://thegeekpage.com/offline-installer-for-store-apps/ 1. Go to the app store, find the app and select share, than select copy link. 2. Go to "https://store.rg-adguard.net/" paste the link to Online link generator for Microsoft Store and get the download file and install offline

Word cannot save file to network drive with error message "Word cannot save or create this file. Make sure that the disk you want to save the file on is not full, write-protected, or damaged."

圖片
Word cannot save file to network drive with error message "Word cannot save or create this file. Make sure that the disk you want to save the file on is not full, write-protected, or damaged." Issue for Microsoft Office Word 2016 on Windows 10 Del all file under following folder: C:\Users\%username%\AppData\Local\Microsoft\Windows\INetCache\Content.MSO C:\Users\%username%\AppData\Local\Microsoft\Windows\INetCache\Content.Word Reference: Files stored in the "C:\Users\<userid>\AppData\Local\Microsoft\Windows\INetCache\Content.MSO" folder are temporary files stored by MSO (Microsoft Office) applications, including Word, Excel, PowerPoint, 

Windows 10 Fix - "We Can't Sign Into Your Account" error message

圖片
Windows 10 Fix - "We Can't Sign Into Your Account" error message When sign in Windows will get "We Can't Sign Into Your Account - this problem can often be fixed by signing out of your account and then signing back in" error message Solution:       1. Run CMD and type "whoami /user" to get your using SID         2. Run regedit go to  "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList" Select your SID and click "ProfileImagePath" change to collect path e.g. d:\users\yourname      3. Go to C:\users\yourname folder right click select properties -> Security -> Advanced -> change Owner to yourname and select "Replace all child object permission entries with inheritable permission entries from this object" -> click OK     4. Restart PC & Sign in again

Link - HowTo: Use Silverlight-enabled website in Microsoft Edge Chromium

Link-  https://zoomicon.wordpress.com/2021/12/21/howto-use-silverlight-enabled-website-in-microsoft-edge-chromium/

Download View Only Streams Video From Microsoft Sharepoint/Onedrive

Download View Only Streams Video From Microsoft Sharepoint/Onedrive  Ref:https://vball.fun/2021/12/10/download-view-only-video-from-microsoft-sharepoint/index.html In  1. Chrome/Edge(F12) -> Inspector -> Network ->  in Filter enter "videomanifest" 2. Play the video 3. When the file show up  Right-click on it and copy the link address  4. download    ffmpeg tools  " https://ffmpeg.org/download.html" ffmpeg -i "pasteTheManifestYouCopiedHere" -codec copy downloadedVideo.mp4 it get error, you can download the " videomanifest" file first by paste the copy link in browser and user follow command ffmpeg -i " videomanifest " -codec copy downloadedVideo.mp4

Change drive letter with registry with Windows 10

  Change drive letter with registry with Windows 10 Some time Windows 10 have issue can't change drive letter both disk management or diskpart command, so you try use registry to change drive letter as you want: In run type regedit.exe enter find drive letter key in following folder "Computer\HKEY_LOCAL_MACHINE\SYSTEM\MountedDevices" and than rename the key to you want drive letter: i.e. want change G: to Y: drive letter then rename as below \DosDevices\G:  --> \DosDevices\Y: reboot PC to activate.   

OOBESETTINGS error when first time logon Windows 10 or receive “Something went wrong but you can try again." error message

  OOBESETTINGS error when first time logon Windows 10 or receive “Something went wrong but you can try again." error message. Try below step:  1. Select Ctrl+Shift+F10 on the keyboard once. 2. Select Ctrl+Shift+Esc on the keyboard to open the Task Manager In Task Manager close Windows 10 logon task process Manually run msoobe.exe by d ouble click  C:\windows\system32\oobe\ msoobe.exe than reboot Windows.

Command line for looking at specific port

In cmd: netstat -na | find "8080" In bash: netstat -na | grep "8080" In PowerShell: netstat -na | Select-String "8080" 計算出 80 埠連線數並且連線狀態是 ESTABLISHED 的數量 netstat -ant | find ":80" | find /c "ESTABLISHED" 列出主機中有提供服務連線的 Port,不區分大小寫 netstat -ant | find / i "listening" | find /v "0.0.0.0:0" 過濾掉 UDP netstat -ant | find ":80" | find /v "UDP"

Outlook missing Teams Meeting icon

Outlook missing Teams Meeting icon Reference: https://answers.microsoft.com/en-us/outlook_com/forum/all/outlook-calendar-missing-teams-icon/827c07d5-8741-4064-8ec0-9bc065a1c604 Teams icon should be automatically added to Outlook client,  if not please try the steps below: 1. Restart the Teams desktop client. 2. Sign out and then sign back in to the Teams desktop client. 3. Restart the Outlook desktop client.  If problem persist see this one: 1. In Outlook, choose File and then Options. 2. Select the Add-ins tab of Outlook Options dialog box. 3. Confirm that Microsoft Teams Meeting Add-in for Microsoft Office is listed in the Active Application Add-ins list 4. If the Teams Meeting Add-in is listed in the Disabled Application Add-ins list, select COM Add-ins in Manage and then select Go… 5. Set the checkbox next to Microsoft Teams Meeting Add-in for Microsoft Office. 6. Choose OK on all dialog boxes and restart Outlook.

How to copy files from all subfolders to a single folder?

How to copy files from all subfolders to a single folder? Open a Command Prompt window. Run the following commands, one by one and press ENTER after each line md "d:\all snaps" cd /d "d:\your source folder" for /r %d in (*) do copy "%d" "d:\your destination folder\" If a file of the same name exists in the destination, you’ll be asked if you want to overwrite or skip the file.

VLC can't Play or crashed with HVC1 Codec (H.265/HEVC) / MP4 file

HVC1 Codec or MP4 file won't Play in VLC with error or crash would try following step First download the latest version VLC player than disable Hardware Video Decoding setting in VLC. Step:  1. Open the VLC media player and go to the "Tools" >"Preferences". 2. In "Show Settings" from the lower left corner select "All" to show all setting view. 3. Go to "Input/Codec" >> "Video Codecs" >> "FFmpeg" and then disable the ‘Hardware decoding’ option. After that, close the VLC media player and restart it, and then play the video file with it. If still cannot play can try other solution with following link: https://learncctv.com/how-to-play-hikvision-mp4-files/

Outlook 2016 some email cannot display Chinese font and appearance of square or rectangular box symptoms, or some variation of that.

Outlook 2016 some email cannot display Chinese font and appearance of square or rectangular box symptoms, or some variation of that. Solutions : In Windows setting à Region à Administrative à Change System locale… à enable “Beta: Use Unicode UTF-8 for worldwide language support” , t han reboot Windows.

How to Open Print Management use it for remote add client PC printer

  How to Open Print Management use it for remote add client PC printer 1: Open Print Management via Run Command Press the Windows key + R to open the Run command box, type printmanagement.msc and hit Enter. 2.Under Print Management > Print Servers right click "Add/Remote servers..." > input remote computer name click OK.

How to preinstall / pre-add a driver to the Windows 10

How to preinstall / pre-add a driver to the Windows 10    All drivers are stored in the so called DriverStore, which is located under %SYSTEMDRIVE%\Windows\System32\DriverStore. With the built-in command line tool pnputil you can add or remove drivers. e.g, Adding drivers and copy all drivers from that folder "c:\LOCATION_OF_DRIVER" : Run CMD Pnputil.exe /add-driver c:\LOCATION_OF_DRIVER\*.inf /subdirs Deleting a driver: Pnputil.exe /delete-driver DRIVER_NAME.inf Reference: https://www.wardvissers.nl/2015/05/21/how-to-add-a-driver-to-the-driverstore/

Can't sign into Onedrive with error code 0x8004de40 on windows 7

Can't sign into Onedrive with error code 0x8004de40 on windows 7   When you access a Microsoft SharePoint or OneDrive website from Windows 8 or Windows 7 Service Pack 1 (SP1), you receive one of the following error messages: Error code: 0x8004de40   The remote server returned an error: (400) Bad Request The underlying connection was closed Solution: Download and install Easy fix and run: https://download.microsoft.com/download/0/6/5/0658B1A7-6D2E-474F-BC2C-D69E5B9E9A68/MicrosoftEasyFix51044.msi Reference: https://support.microsoft.com/en-us/topic/update-to-enable-tls-1-1-and-tls-1-2-as-default-secure-protocols-in-winhttp-in-windows-c4bd73d2-31d7-761e-0178-11268bb10392 https://support.microsoft.com/zh-tw/topic/%E6%9B%B4%E6%96%B0%E4%BB%A5%E5%9C%A8-windows-%E7%89%88-winhttp-%E4%B8%AD%E5%95%9F%E7%94%A8-tls-1-1-%E5%92%8C-tls-1-2-%E5%81%9A%E7%82%BA%E9%A0%90%E8%A8%AD%E5%AE%89%E5%85%A8%E9%80%9A%E8%A8%8A%E5%8D%94%E5%AE%9A-c4bd73d2-31d7-761e-0178-11268bb10392

Windows 10 Installation Issue "Can't install Windows on GPT drive"

Windows 10 Installation Issue "Can't install Windows on GPT drive" Use MBR2GPT.EXE to convert a disk from the Master Boot Record (MBR) to the GUID Partition Table (GPT) partition style without modifying or deleting data on the disk. Boot to CMD 1. Boot from the installation device (USB or DVD). 2. Once you reach the "Install" page. Immediately press and hold  SHIFT KEY + F10 KEY.  This will open command prompt (The black box DOS program). 3. Once the Command Prompt is open, proceed to type the following command line. Find disk number use diskpart command ( e.g. disk:0 ) Type  diskpart  and then hit enter. This will enable command prompt to enter disk partitioning mode. Now type  list disk  and then hit enter. You will then see a list of disk drives. after fund the disk number which you want to convert type exit to exit the diskpart mode. type following command to convert the disk type mbr2gpt /convert /disk:0

No responding when print even restart windows still have problem - How to clear print queue

Pressing the Windows logo key  + R. In the Run window, type services.msc The Services window is displayed. Right click Print Spooler and select Stop. Navigate to C:\Windows\System32\spool\PRINTERS and delete all files in the folder. In the Services window, Start the Print Spooler service or reboot Windows.  

Windows 10 突然不能夠輸入中文, 只能出英文解決辦法

 Windows 10 突然不能夠輸入中文, 只能出英文解決辦法 執行 regedit.exe 開啟【登錄編輯程式】,找 “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run” 到 Run這個資料夾,在右邊欄位點選右鍵,新增字串值”ctfmon” 然後修改字串值的數值資料為 “C:\Windows\system32\ctfmon.exe” 完成後關閉 重新開機