gitextract_8fdsknjd/ ├── .editorconfig ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ └── BuildBinaries.yml ├── .gitignore ├── BuildAllTargets.cmd ├── BuildAllTargets.proj ├── BuildInstallers.cmd ├── Directory.Build.props ├── Documents/ │ ├── People.md │ ├── ReleaseNotes.md │ ├── ReleaseNotesPreview.md │ └── Versioning.md ├── License.md ├── MinSudo/ │ ├── MinSudo.cpp │ ├── MinSudo.manifest │ ├── MinSudo.rc │ ├── MinSudo.vcxproj │ ├── MinSudo.vcxproj.filters │ ├── Resources/ │ │ ├── en/ │ │ │ └── Translations.md │ │ └── zh-Hans/ │ │ └── Translations.md │ └── resource.h ├── NanaRun/ │ ├── NanaRun.cpp │ ├── NanaRun.manifest │ ├── NanaRun.vcxproj │ └── NanaRun.vcxproj.filters ├── NanaRun.IconResource/ │ ├── NanaRun.IconResource.h │ ├── NanaRun.IconResource.props │ └── NanaRun.IconResource.rc ├── NanaRun.slnx ├── ReadMe.md ├── SynthRdp/ │ ├── AutoRun.inf │ ├── SynthRdp.cpp │ ├── SynthRdp.iss │ ├── SynthRdp.manifest │ └── SynthRdp.vcxproj ├── Tools/ │ ├── Default.isl │ ├── Setup.e32 │ └── SetupLdr.e32 └── VirtualSmb/ ├── VirtualSmb.cpp ├── VirtualSmb.manifest └── VirtualSmb.vcxproj