Reference
https://stackoverflow.com/questions/57317141/linux-docker-ee-containers-on-windows-server-2016/57691939#57691939
https://github.com/docker/labs/issues/490
https://computingforgeeks.com/how-to-run-docker-containers-on-windows-server-2019/
Reference
https://stackoverflow.com/questions/57317141/linux-docker-ee-containers-on-windows-server-2016/57691939#57691939
https://github.com/docker/labs/issues/490
https://computingforgeeks.com/how-to-run-docker-containers-on-windows-server-2019/
Main ref: https://mattsch.com/2015/06/19/move-directory-from-one-repository-to-another-preserving-history/
If there are multiple folders, we need to do thing differently.
Download and install Remote Server Administration Tools for Windows 10
Open up a Powershell console and use Active Directory cmdlets
Examples:
Get-ADUser -Identity "username"
Get-ADPrincipalGroupMembership username| select name
Get-ADGroup
Get-ADGroupMembers
Only for Powershell 5
Get-Volume; $pagefile = Get-WmiObject Win32_ComputerSystem -EnableAllPrivileges; $pagefile.AutomaticManagedPagefile = $false; $pagefile.put(); $pagefileset = Get-WmiObject Win32_pagefilesetting; $pagefileset.InitialSize = 1024; $pagefileset.MaximumSize = 8339; $pagefileset.put();Gwmi win32_Pagefilesetting | Select Name, InitialSize, MaximumSize; restart-computer -force
https://github.com/ytdl-org/youtube-dl/blob/master/README.md#readme
on Windows PC
start CMD.exe
type wsl
sudo apt update
sudo apt install youtube-dl
youtube-dl -x --audio-format mp3 --embed-thumbnail -o "%(playlist_index)s-%(title)s.%(ext)s" URL
yt-dlp -f "bestaudio[ext=m4a],bestaudio[ext=webm]" -x --audio-format mp3 --audio-quality 0 -o "%(playlist)s/%(playlist_index)03d %(title)s.%(ext)s" URL
yt-dlp -f 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best' -S vcodec:h264 --windows-filenames --restrict-filenames --write-auto-subs --sub-lang "en.*" --embed-subs --add-metadata --add-chapters --no-playlist -N 4 -ci --verbose --remux-video "mp4/mkv" URL
Download MIT class
yt-dlp -f "bestaudio[ext=m4a],bestaudio[ext=webm]" -x --audio-format mp3 --audio-quality 0 -o "%(playlist)s/%(titles)s.%(ext)s" "https://www.youtube.com/watch?v=wWnfJ0-xXRE&list=PLyQSN7X0ro203puVhQsmCj9qhlFQ-As8e"