eneerge
eneerge
Here's something that will work on all browsers since 2015. Props to: https://stackoverflow.com/questions/400212/how-do-i-copy-to-the-clipboard-in-javascript ``` var copyButton = document.querySelector('#copyhint'); // current id of the ctrl+c text copyButton.addEventListener( 'click' ,function(event) { var...
This isn't specific to Tailscale. I'm having this exact same issue when connected to an OpenVPN connection.
I tried using the --unprivileged parameter, but didn't work. I am not getting an error, but nmap isn't even getting a ping response. When I ping the vpn device ip...
I get this same error. The dll is in my C:\Users\Username\Downloads folder and not on any network share. Running it in Powershell ISE in user context. I tried redefining temp...
This had some recommendations for updating the code: https://stackoverflow.com/questions/39936712/cannot-load-dll-assembly-in-windows-10-exception-from-hresult-0x80131515 I tried : [System.Reflection.Assembly]::UnsafeLoadFrom("C:\Users\username\Downloads\OneDriveLib.dll") But unfortunately, got the exact same error.
Looking at the inner exception, it does think it's running from a network location for some reason: > $Error[0].Exception.InnerException.InnerException An attempt was made to load an assembly from a network...
Eh... Ok, so I feel stupid, but escaping the slashes seem to fix it ``` Import-Module "C:\\Users\\username\\Downloads\\OneDriveLib.dll" Get-ODStatus ```
Nevermind, the escaping is not what fixed it. It was the environment it was run in. If you already have a Powershell window open, download the file, then unblock it,...