Recent content by neemobeer


  1. Problem with netsh command to configure IP

    Works correctly for me.
  2. Bypass passkey ssh from terminal windows

    In order to remote into a system with SSH via Powershell, both Powershell and ssh server have to be installed AND you need to add a subsystem command to your sshd_config file on every system you want to remote into. Subsystem powershell /usr/bin/pwsh -sshs -NoLogo
  3. Bypass passkey ssh from terminal windows

    You could use ssh-agent with powershell, but no way to do it with just powershell
  4. Bypass passkey ssh from terminal windows

    If you mean a private key password you would need to save the private key without a password
  5. Bypass passkey ssh from terminal windows

    Pretty sure powershell doesn't support ppk format
  6. Bypass passkey ssh from terminal windows

    Powershell 7.x supports ssh natively in powershell sessions, so when creating a new powershell session w/ssh as the connection type you just specific the public key with... $My_Session = New-PsSession -KeyFilePath path\to\key.pem -Hostname <sshhost>....
  7. A Service Handler In Gmail?

    It's asking if you want to use gmail as the default handler of all email links. Special links for example in web pages that start mailto:
  8. Solved Bit Defender Total Security (BDTS) and Windows AutoPlay

    Can you check to see if this value exists in the registry? You can do a search from regedit. NoDriveTypeAutoRun
  9. Solved Bit Defender Total Security (BDTS) and Windows AutoPlay

    If you open the Bitdefender control panel, under protections there is likely a setting to disable that. Making an assumption here as I don't have their product
  10. Solved Publishing Problem with Visual Studio Pro 2022

    It just be a simple toggle between building a debug or release vs. been that way forever in visual studios Set debug and release configurations - Visual Studio (Windows)
  11. How to get periodically public IP address to Email?

    Opening RDP over the internet is a really bad idea, but you'd either want to setup a Dynamic DNS service or if you have a system always running at home you write a simple script to query any number of websites, get your public IP and send the email. A better solution would be to setup a VPN...
  12. Win 11...no oobe

    I believe Microsoft removed the cmd file. I think you can just add the reg still and reboot for the same effect reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE /v BypassNRO /t REG_DWORD /d 1 /f
  13. Solved nordvpn issue

    Have you looked at the console log? In the browser settings look for something like dev tools and look for a console tab or section. Report the output
  14. Solved nordvpn issue

    Doesn't help your issue, but to be frank your traffic is already encrypted (that's what HTTPS does), VPNs don't really provide any extra security just privacy. The ISP you are on and the network operator won't know what sites you visit and that's mostly all you get. With caveats a VPN won't...
  15. Boot Menu Entries

    Cool, looks like it was just cached in NVRAM
Back
Top Bottom