Windows user here, please don’t shoot me

I’m in need of a remote desktop solution that works without a monitor. I’ve tried AnyDesk, TeamViewer, and TightVNC.

All of the stuff I have need of using has a GUI client or dedicated software, but I’m about to be away from home for a couple weeks and I’m worried it might shit out on me for one reason or another and need some manual input (any one who has ever used a computer knows that this happens sometimes)

I have OpenVPN on my router and that’s how I’m accessing everything, so a local solution will work, and it would be nice, but not necessary, if it’s got an Android client as well

I have Windows 10 Home so I can’t use remote desktop that’s built into windows without installing a cracked pro version of window.

  • computergeek125@lemmy.world
    link
    fedilink
    English
    arrow-up
    3
    arrow-down
    3
    ·
    edit-2
    7 months ago

    Just because you’ve used it professionally, doesn’t mean it’s OK.

    Run the installation file to install the RDPwrap dynamic link library (DLL). This software provides the necessary functionality to enable Remote Desktop from a Windows 10 Home system.

      begin
        if not Reg.OpenKey('\SYSTEM\CurrentControlSet\Control\Terminal Server\Licensing Core', True) then
        begin
          Code := GetLastError;
          Writeln('[-] OpenKey error (code ', Code, ').');
          Halt(Code);
        end;
        try
          Reg.WriteBool('EnableConcurrentSessions', True);
        except
          Writeln('[-] WriteBool error.');
          Halt(ERROR_ACCESS_DENIED);
        end;
        Reg.CloseKey;
    

    So essentially the RDPwrap software subverts Windows 10 Home security to enable Remote Desktop Connections.

    Even without disassembling their shim DLL, just their readme language and installer code doesn’t give me warm fuzzies about this software’s ability to survive legal scrutiny or a Microsoft audit.

    Just like with backups, in my professional IT Admin opinion: if its expensive enough to need remote access, it’s expensive enough to remote access the right way. There’s plenty of free remote options on Windows that don’t require monkey patching the core services and using a Home license professionally. Plus, if you have more than a few Windows installs, you probably want Group Policy anyways, so you’re up to the pro license key for that anyway, plus the Windows Server license key(s) for the AD controller.

    Yeah, windows is expensive when used professionally. If you need windows that badly deal with it or talk to your software vendors about getting Linux or Mac software.