- Open PowerShell as Administrator and run the following commands:
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
- Restart your computer.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import csv | |
def column_to_single_line(csv_file, column_name): | |
column_values = [] | |
with open(csv_file, mode='r', newline='') as file: | |
reader = csv.DictReader(file) | |
for row in reader: | |
column_values.append(row[column_name]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$myshell = New-Object -com "Wscript.Shell"; for ($i = 0; ; $i++) {Start-Sleep -Seconds 600; $myshell.sendkeys("^")} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Reset IP Stack: | |
netsh int ip reset | |
netsh winsock reset | |
Flush DNS Cache: | |
ipconfig /flushdns | |
Reset Firewall Rules: |