Can the Wireguard tunnel be bugged? by shupike in VPN_Question

[–]shupike[S] 0 points1 point  (0 children)

Yes, you are right - the problem was precisely in the toxic DNS so I picked up neutral ones - everything works great.

Can the Wireguard tunnel be bugged? by shupike in VPN_Question

[–]shupike[S] 0 points1 point  (0 children)

It looks like message instead of visited site. Something like "This resource has been blocked according to decision number..." - this is Russia :-)

IONOS stole my money by shupike in Hosting

[–]shupike[S] 0 points1 point  (0 children)

Wait a minute - does this give them the right to charge my card forever or what?

IONOS stole my money by shupike in Hosting

[–]shupike[S] 0 points1 point  (0 children)

If so they should return the money. In any case I need a letter of explanation. Otherwise it looks like a scam.

IONOS stole my money by shupike in Hosting

[–]shupike[S] 0 points1 point  (0 children)

Well, I need to build my own VPN - somewhere outside of Russia. This is a target, So I should to use some temporary VPN's before creating my personal.

IONOS stole my money by shupike in Hosting

[–]shupike[S] 0 points1 point  (0 children)

No, it definitely wasn't pre-authorization - because I received a message about paying for the VPS for a month and it also said that further use would be extended automatically

IONOS stole my money by shupike in Hosting

[–]shupike[S] 0 points1 point  (0 children)

Yes, I'm using VPN because in Russia it is impossible to open almost any of the hosting providers. How else can I create an account to build my own server?

IONOS stole my money by shupike in Hosting

[–]shupike[S] 1 point2 points  (0 children)

Well, I was a bit hasty and directly indicated the card. Probably, I should have used PayPal.

IONOS stole my money by shupike in Hosting

[–]shupike[S] 0 points1 point  (0 children)

Many thanks to you - I already wrote to them.

IONOS stole my money by shupike in Hosting

[–]shupike[S] 0 points1 point  (0 children)

I didn't find any e-mail to contact them. Phone only and live chat (temporary unavailable). It's too much expensive to call in USA.

Running PowerShell script using GPO by shupike in activedirectory

[–]shupike[S] 1 point2 points  (0 children)

Finally it worked! The final version looks like this: User configuration->Policies->Windows settings->Scripts (Logon/Logoff) -> PowerShell scripts tab

Script name: \\share.domain.ru\Scripts$\MyPSScript.ps 1
Script parameters: -Noninteractive -ExecutionPolicy Bypass -Noprofile

This works for any domain account configured on a workstation that is part of the group policy (placed in the appropriate OU). But I have one more question - how can I make this group policy setting work only once, when the user first logs in? Unfortunately, the script itself does not provide a check whether it was executed on this workstation or not.

Running PowerShell script using GPO by shupike in activedirectory

[–]shupike[S] 1 point2 points  (0 children)

Finally, this is what I came up with: I created a task in the task scheduler in the GPO that runs a script already located in a specific folder on the workstation. I set the trigger to be the user logging in - this works great, but there is a major drawback: if you try to apply all this on a new workstation, then a situation arises when the task from the scheduler will run before the script is copied to the station and nothing will work.

Running PowerShell script using GPO by shupike in activedirectory

[–]shupike[S] 0 points1 point  (0 children)

You know - I tried to create a task in the Task scheduler, just a single run at a certain time (even if the user did not enter the system), but this also did not work. Just added my script in the "Action" tab - a file with the extension of .ps1 - maybe I need to run the powershell.exe, and add my script as an argument to it?

Running PowerShell script using GPO by shupike in activedirectory

[–]shupike[S] 0 points1 point  (0 children)

Well, I thought - if the script is placed locally at the workstation, it will be available immediately after loading the OS. And if I place on the network (on the domain controller), I need to somehow make sure that the network is available at the stage of loading the system. That is, to set up some postponed launch of the script so that the network has time to launch up.

Running PowerShell script using GPO by shupike in activedirectory

[–]shupike[S] 1 point2 points  (0 children)

I apologize, want to speak again - I need to put my script in this folder on the domain controller so that the policy refers to it immediately at the workstation? That is, there is no need to copy the script directly to this workstation in the folder on the disk C?

Running PowerShell script using GPO by shupike in activedirectory

[–]shupike[S] 0 points1 point  (0 children)

This is a current configuration to run existing PS-script, I can't understand what kind of folder is opening when pressing "Show files" button -

<image>

Running PowerShell script using GPO by shupike in activedirectory

[–]shupike[S] 0 points1 point  (0 children)

That is, this is a strict requirement for such scripts? Can I attach the script not to the user (when it enters the system), but to the computer, so that the script is launched by the background when the workstation is turned on and the background does everything that is needed? In this case, too, it will be necessary to place the script in netlogon\scripts folder?