Install Windows Subsystem for Linux (WSL) on Windows 11
wsl --install
wsl --list --online
wsl --install -d Ubuntu
wsl --update
wsl --install
wsl --list --online
wsl --install -d Ubuntu
wsl --update
Disable Automatic Updates for Apps
Go to Microsoft Store and disable automatic update
Stop Service using Registry Editor
navigate to this location
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\UnistoreSvc
Find and double click Start
entry from the right pane
You will see a new Windows and it must have 3 in its value data section. The 3
here means that the service is manual.
Then, you have to change this value to 4
to solve the issue as “4: means this service is turned off.
Remove Contents of UnistoreDB Folder
navigate here
C:\Users\profile_name\AppData\Local\Comms\UnistoreDB
and delete all files there.
If you don’t see the DNS encryption options, then you’re editing the DNS settings for your Wi-Fi SSID. Make sure you select the connection type in Settings > Network & Internet, then click “Hardware Properties” first.
References
https://www.howtogeek.com/765940/how-to-enable-dns-over-https-on-windows-11/
SMBv1 (client and server)
Detect:
Get-WindowsOptionalFeature -Online -FeatureName smb1protocol
Disable:
Disable-WindowsOptionalFeature -Online -FeatureName smb1protocol
Enable:
Enable-WindowsOptionalFeature -Online -FeatureName smb1protocol
from win32gui import SetWindowPos import win32con SetWindowPos(window.winId(), win32con.HWND_TOPMOST, # = always on top. only reliable way to bring it to the front on windows 0, 0, 0, 0, win32con.SWP_NOMOVE | win32con.SWP_NOSIZE | win32con.SWP_SHOWWINDOW) SetWindowPos(window.winId(), win32con.HWND_NOTOPMOST, # disable the always on top, but leave window at its top position 0, 0, 0, 0, win32con.SWP_NOMOVE | win32con.SWP_NOSIZE | win32con.SWP_SHOWWINDOW) window.raise_() window.show() window.activateWindow()
References
https://stackoverflow.com/questions/12118939/how-to-make-a-pyqt4-window-jump-to-the-front
Rectangle rect = new Rectangle(0, 0, 100, 100); Bitmap bmp = new Bitmap(rect.Width, rect.Height, PixelFormat.Format32bppArgb); Graphics g = Graphics.FromImage(bmp); g.CopyFromScreen(rect.Left, rect.Top, 0, 0, bmp.Size, CopyPixelOperation.SourceCopy); bmp.Save(fileName, ImageFormat.Jpeg);
References
https://stackoverflow.com/questions/3306600/c-how-to-take-a-screenshot-of-a-portion-of-screen
from ctypes import windll, Structure, c_long, byref class POINT(Structure): _fields_ = [("x", c_long), ("y", c_long)] def queryMousePosition(): pt = POINT() windll.user32.GetCursorPos(byref(pt)) return { "x": pt.x, "y": pt.y} pos = queryMousePosition() print(pos)
References
https://stackoverflow.com/questions/3698635/getting-cursor-position-in-python
[DllImport("user32.dll")] public static extern void mouse_event(MouseEventFlags dwFlags, uint dx, uint dy, uint dwData, MouseEventDataXButtons dwExtraInfo); [DllImport("User32.Dll")] public static extern long SetCursorPos(int x, int y);
[Flags] public enum MouseEventFlags : uint { LEFTDOWN = 0x00000002, LEFTUP = 0x00000004, MIDDLEDOWN = 0x00000020, MIDDLEUP = 0x00000040, MOVE = 0x00000001, ABSOLUTE = 0x00008000, RIGHTDOWN = 0x00000008, RIGHTUP = 0x00000010, WHEEL = 0x00000800, XDOWN = 0x00000080, XUP = 0x00000100 } //Use the values of this enum for the 'dwData' parameter //to specify an X button when using MouseEventFlags.XDOWN or //MouseEventFlags.XUP for the dwFlags parameter. public enum MouseEventDataXButtons : uint { XBUTTON1 = 0x00000001, XBUTTON2 = 0x00000002 }
public static void MoveMouse(int x, int y) { PInvoke.SetCursorPos(x, y); } public static void ClickMouse(int x, int y) { PInvoke.mouse_event(MouseEventFlags.LEFTDOWN | MouseEventFlags.ABSOLUTE, (uint)x, (uint)y, 0, 0); Thread.Sleep(10); PInvoke.mouse_event(MouseEventFlags.LEFTUP | MouseEventFlags.ABSOLUTE, (uint)x, (uint)y, 0, 0); }
References
https://stackoverflow.com/questions/13520705/move-mouse-to-position-and-left-click
http://www.pinvoke.net/default.aspx/user32.mouse_event
https://stackoverflow.com/questions/8050825/how-to-move-mouse-cursor-using-c
https://www.pinvoke.net/default.aspx/user32.setcursorpos
First Set Process DPI Aware:
Get Screen Size on C#
https://pupli.net/2020/03/get-screen-size-on-c/
Install-Package System.Drawing.Common -Version 7.0.0
Take screenshot and save to file
using System; using System.Drawing; using System.Windows.Forms; namespace ScreenshotExample { class Program { static void Main(string[] args) { // Get the bounds of the screen Rectangle bounds = Screen.PrimaryScreen.Bounds; // Create a bitmap object to store the screenshot using (Bitmap bitmap = new Bitmap(bounds.Width, bounds.Height)) { // Create a graphics object from the bitmap using (Graphics g = Graphics.FromImage(bitmap)) { // Capture the screen g.CopyFromScreen(new Point(bounds.Left, bounds.Top), Point.Empty, bounds.Size); } // Save the screenshot as a PNG file bitmap.Save("screenshot.png"); } Console.WriteLine("Screenshot saved as screenshot.png"); } } }
Take screenshot and save to memory
using System; using System.Drawing; using System.IO; using System.Windows.Forms; namespace ScreenshotToMemory { class Program { static void Main(string[] args) { // Get the bounds of the screen Rectangle bounds = Screen.PrimaryScreen.Bounds; // Create a bitmap object to store the screenshot using (Bitmap bitmap = new Bitmap(bounds.Width, bounds.Height)) { // Create a graphics object from the bitmap using (Graphics g = Graphics.FromImage(bitmap)) { // Capture the screen g.CopyFromScreen(new Point(bounds.Left, bounds.Top), Point.Empty, bounds.Size); } // Store the screenshot in memory using MemoryStream using (MemoryStream memoryStream = new MemoryStream()) { bitmap.Save(memoryStream, System.Drawing.Imaging.ImageFormat.Png); // Convert the MemoryStream to byte array byte[] screenshotBytes = memoryStream.ToArray(); // Now the screenshot is stored in screenshotBytes, you can use it as needed // For demonstration, let's output the length of the byte array Console.WriteLine($"Screenshot captured. Byte array length: {screenshotBytes.Length}"); } } } } }