Skip to content

Instantly share code, notes, and snippets.

View LancerComet's full-sized avatar
😞
I have to say sorry to the world.

LancerComet LancerComet

😞
I have to say sorry to the world.
  • Land of Sin.
View GitHub Profile
@LancerComet
LancerComet / README.md
Last active May 20, 2022 03:52
Tips about using Hyper-V GPU-PV

Tips about using Hyper-V GPU-PV

Stuck on 1024x768 and unable to change it

Just enable Hyper-V graphics device, and set to 1920x1080, then disable it through Parsec.

@LancerComet
LancerComet / README.md
Last active April 12, 2022 16:48
WinRAR Batch pack

WinRAR batch packing

How to use WinRAR to make mutiple packages in bat.

for /d %%s in (*) do (
  "C:\Program Files\WinRAR\WinRAR.exe" a -ep1 %%s.rar %%s
)