Download and install -
WinSetView-Setup.exe
1. To boot into Windows
Press F12 to enter boot menu. Choose Windows.
2. To boot into Ubuntu
(1) Do NOT press F12. Simply wait, and choose 'Ubuntu'.
Explanation: To boot into Windows, use Windows Boot Manager; to boot into Ubuntu, use GRUB.
(2) Press F12 to enter boot menu. Choose Ubuntu.
Press Windows key, search for 'Optional features'. Search for and install 'OpenSSH Server'
OpenSSH Server configuration for Windows Server and Windows
Key-based authentication in OpenSSH for Windows
Use forward slashes to specify the UNC Path:
open('//HOST/share/path/to/file')
(if your Python client code is also running under Windows)
Want IP of Ubuntu WSL 2 be in the same network of host Window system
https://github.com/microsoft/WSL/issues/4150#issuecomment-504209723
Accessing network applications between windows and wsl linux ubuntu
https://docs.microsoft.com/en-us/windows/wsl/compare-versions
Accessing Linux networking apps from Windows (localhost)
Accessing Windows networking apps from Linux (host IP)
Connecting via remote IP addresses
Accessing a WSL 2 distribution from your local area network (LAN)
IPv6 access
(For Windows)
How to Install, Create and Activate a Python Virtual Environment (Project) for Django?
mkvirtualenv is not recognized as an internal or external command, operable program or batch file
For Python 3.3 or newer, Commands for installing, creating and activate virtual environment has been changed.
You can install virtual environment using pip:
py -m pip install --user virtualenv
For creating new environment:
py -m venv myproject
To activate your virtual environment:
.\myproject\Scripts\activate
After activating virtual environment, You’ll see “(myproject)” next to the command prompt.
How to create local account on Windows using command?
https://pureinfotech.com/create-local-account-windows-10/
If you’re comfortable typing command lines, it’s actually a lot faster to create a local account on Windows 10 using Command Prompt.
To create a local account on Windows 10 with Command Prompt, use these steps:
Open Start.
Search for Command Prompt, right-click the result, and select the Run as administrator option.
Type the following command and press Enter:
net user USER_NAME PASSWORD /add
In the above command make sure to change USER_NAME and PASSWORD with the credentials you want to use for the new user account.
Type the following command to add the newly created account to the Administrators group and press Enter:
net localgroup administrators USER_ACCOUNT /add

In the command, make sure to replace USER_ACCOUNT with the account name you want to add to the administrators group.
If you want to test the new changes, sign-out and you’ll notice the new user account sitting in the bottom-left corner of the screen. Then select the new user account and sign in.
It’s also possible to create a local account using PowerShell, and here are the steps.
To change the account type from standard to administrator, use these steps:
Open Start.
Search for Command Prompt, right-click the result, and select the Run as administrator option.
Type the following command to add the newly created account to the Administrators group and press Enter:
net localgroup administrators USER_ACCOUNT /add

In the command, make sure to replace USER_ACCOUNT with the account name you want to add to the administrators group.
Once you complete the steps, the next time the users signs in, the account will have administrative privileges, meaning that the users will be able to install apps, modify system settings, and pretty much unlimited access to the device.
To change the account type from standard to administrator, use these steps:
Open Start.
Search for Command Prompt, right-click the result, and select the Run as administrator option.
Type the following command to add the newly created account to the Administrators group and press Enter:
net user USER_ACCOUNT /del
In the command, make sure to change USER_ACCOUNT for account name you want to delete.
Once you complete the steps, the next time the users signs in, the account will have administrative privileges, meaning that the users will be able to install apps, modify system settings, and pretty much unlimited access to the device.
Update January 29, 2020: This guide was originally published in October 2015, and it’s been updated in January 2020 to reflect the new changes.
c:\psexec \\remote_machine_name cmdOnce you have that command line open, you can run this command to disable the firewall:
netsh advfirewall set currentprofile state offAlternatively you can run this command to allow only Remote Desktop while still leaving the rest of the firewall as is:
netsh advfirewall firewall set rule group=”remote desktop” new enable=Yes
reg add “HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server” /v fDenyTSConnections /t REG_DWORD /d 0 /f






