Search found 56 matches

by ErnieB
Sun Mar 24, 2019 2:37 am
Forum: PowerShell
Topic: Creating a Kerberos or NTLM logon to an Active Directory Domain Controller at will.
Replies: 8
Views: 6955

Re: Creating a Kerberos or NTLM logon to an Active Directory Domain Controller at will.

Thanks very much for your time and the excellent details I appreciate it :)
by ErnieB
Mon Mar 18, 2019 5:32 am
Forum: PowerShell
Topic: Creating a Kerberos or NTLM logon to an Active Directory Domain Controller at will.
Replies: 8
Views: 6955

Re: Creating a Kerberos or NTLM logon to an Active Directory Domain Controller at will.

Hello, Thanks for the replies I am not trying to remote to the DC as it were, but rather create an authentication event. For example, I want to emulate (in a very crude sense) load on a DC when say 1000 users authentication to the DC (either via Kerberos and therefore the user obtains a TGT or NTLM)...
by ErnieB
Fri Mar 15, 2019 3:04 am
Forum: PowerShell
Topic: Creating a Kerberos or NTLM logon to an Active Directory Domain Controller at will.
Replies: 8
Views: 6955

Re: Creating a Kerberos or NTLM logon to an Active Directory Domain Controller at will.

Can you please give me the link to the location where my question has been moved as I cannot find it, thanks
by ErnieB
Thu Mar 14, 2019 1:42 am
Forum: PowerShell
Topic: Creating a Kerberos or NTLM logon to an Active Directory Domain Controller at will.
Replies: 8
Views: 6955

Creating a Kerberos or NTLM logon to an Active Directory Domain Controller at will.

Can someone please assist with the following question I want to be able to force either an NTLM logon or Kerberos logon to an Active Directory Domain controller as a separate user principle Initially, I simply tried the Windows NET command as follows net use \DCName\Sharename /user:DomainName\Userna...
by ErnieB
Wed Sep 19, 2018 5:49 am
Forum: PowerShell
Topic: WMI question
Replies: 6
Views: 2528

Re: WMI question

OK thanks again for your help
by ErnieB
Wed Sep 19, 2018 2:04 am
Forum: PowerShell
Topic: WMI question
Replies: 6
Views: 2528

Re: WMI question

Hello Jim Thanks very much for taking the time to reply. if I run the script on a system with a CD/DVD it does not return it is the CD/DVD drive is empty (e.g. no disk in the drive) I believe this is becuase the class the script uses is Win32_LogicalDisk and as there is not disk in the CD in the dri...
by ErnieB
Wed Sep 19, 2018 12:40 am
Forum: PowerShell
Topic: WMI question
Replies: 6
Views: 2528

WMI question

Hello, can someone please assist with the following I have the following script function Get-DiskInfo { [cmdletbinding()] param () begin { $Array = New-Object -TypeName System.Collections.ArrayList } process { try { $DiskInfo = [ordered]@{ } $diskdrive = Get-WmiObject win32_diskdrive -ErrorAction St...
by ErnieB
Sat Sep 01, 2018 11:24 am
Forum: PowerShell
Topic: PowerShell Active Directory ADSI question
Replies: 5
Views: 3098

Re: PowerShell Active Directory ADSI question

Thanks Jim :)
by ErnieB
Thu Aug 30, 2018 11:19 am
Forum: PowerShell
Topic: PowerShell Active Directory ADSI question
Replies: 5
Views: 3098

Re: PowerShell Active Directory ADSI question

Thanks Jim, that worked fine The odd thing is I did not see the .Add method on the Group object (see below), but it still works :) I am sure in other versions of PowerShell I used to see the .Add method, any why it worked so that is all that matters, thanks again. PS C:\Users\Administrator> $group |...
by ErnieB
Thu Aug 30, 2018 7:31 am
Forum: PowerShell
Topic: PowerShell Active Directory ADSI question
Replies: 5
Views: 3098

PowerShell Active Directory ADSI question

Hello, I notice then getting an Group object via ADSI as follows $GroupDN = Get-AdGroup TestGroup01 | Select-Object -ExpandProperty Distinguishedname $Group = [ADSI]”LDAP://$GroupDN” The .Add method no longer appears to exist (using Winows Server 2012 R2 with PowerShell v4) Therefore using reflectio...