รวมวิธีแก้ปัญหา Windows
https://www.ghacks.net/2015/10/25/how-to-disable-windows-defender-in-windows-10-permanently/
https://www.itechtics.com/enable-gpedit-windows-10-home/
https://troubleshooter.xyz/wiki/fix-desktop-window-manager-high-cpu/
https://www.makeuseof.com/tag/fix-windows-10-sleep-mode/
2. รัน system diagnose
https://support.microsoft.com/en-us/help/17590/automatically-diagnose-and-repair-windows-file-and-folder-problems
3. รัน performance report
ใช้คำสั่ง perfmon /report
o solve the language keep adding itself issue follow these steps:
- go to Control Panel -> Language
- from the sidebar select "Change date, time, or number formats"
- select "Administrative" tab.
- in the "Welcome screen and new user accounts" box click "Copy settings.." button
- Check the two boxes under "Copy your current settings to"
- the windows will ask you to restart the computer then you finish :)
- Click on the Start button in the toolbar
- Type Network and Sharing Center in the Search field and press Enter
- Choose Set up a new connection or network under the heading Change your networking settings
- Select Connect to a workplace and click Next
- Choose Use my Internet connection (VPN)
- Enter vpn.ic.ac.uk in the Internet address field
- Enter Imperial VPN in the Destination name field
- Tick Remember my credentials
- Click Create
Display Or Hide Status Bar In Microsoft Excel With VBA
If you are experienced with using Microsoft Excel, a VBA macro will help you display or hide status bar in Microsoft Excel easily.
Step 1: Hold down the Alt + F11 keys in Excel, and it opens the Microsoft Visual Basic for Applications window.
Step 2: Click Insert > Module, and paste the following macro in the Module Window.
VBA for displaying status bar in Microsoft Excel
Sub Show_Status_Bar()
Application.DisplayStatusBar = True
End Sub
VBA for hiding status bar in Microsoft Excel
Sub Hide_Status_Bar()
Application.DisplayStatusBar = False
End Sub
Step 3: Press the F5 key to run this macro. And you will get the result that you want.
Comments
Post a Comment