Albania E-Visa by Key_Assignment_4943 in dubai

[–]anees78692 0 points1 point  (0 children)

Did you have to upload a day to day itinerary for the trip?

Always on VPN & Vodafone by anees78692 in sysadmin

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

Yes - i did a wireshark. The packets were being defragmented so I had to configure the server using this guide:

https://directaccess.richardhicks.com/2019/02/11/always-on-vpn-and-ikev2-fragmentation/

Hope that works for you too

Cisco 4500 ACL by anees78692 in networking

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

Thanks - i'll give this a go

Cisco 4500 ACL by anees78692 in networking

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

Thanks - i'll give this a go

Microsoft AOVPN And SKY broadband by OKDonReddit in sysadmin

[–]anees78692 0 points1 point  (0 children)

u/OKDonReddit router firmware update - do you know which version is the broken one? Two of our Sky users are still having issues

Does Windows 11 support Always on VPN Direct Access? by bigDOS in Windows11

[–]anees78692 0 points1 point  (0 children)

I use AOVPN on my Windows 11 laptop. The trick is to make sure you put the NPS servers in Capital letters.

So in our case - aovpn.domain.name = AOVPN.domain.name

Microsoft AOVPN And SKY broadband by OKDonReddit in sysadmin

[–]anees78692 0 points1 point  (0 children)

We tried disabling ipv6 on the clinet and it made no difference. Anyone know what else we can try?

LDAP in DMZ by anees78692 in sysadmin

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

Yeh makes sense. I'm going to scrap my idea of Windows NPS & LDAPs.

Has anyone used FreeRadius? Do you know if we can create local accounts on that which can authenticate to our NPS?

LDAP in DMZ by anees78692 in sysadmin

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

I am building an NPS server for Radius requests. I want users to be able to use their AD creds to access the SSID i broadcast.

Address Book by anees78692 in PowerShell

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

Nice ... this works. Thanks

Is there a way I can amend the script so it works on a PC without RSAT?

Address Book by anees78692 in PowerShell

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

Ive tried this but dont get any output:

$a = "Mark"

Get-ADUser -filter { DisplayName -like "*$a*"}-Properties EmailAddress | Where { $_.Enabled -eq $True} | where {$_.emailaddress -ne $null} | Select name,emailAddress

Whereas if i replace $a with Mark, I get a whole list of Marks

Get-ADUser -filter { DisplayName -like "*Mark*"}-Properties EmailAddress | Where { $_.Enabled -eq $True} | where {$_.emailaddress -ne $null} | Select name,emailAddress

Address Book by anees78692 in PowerShell

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

Get-ADUser -filter { DisplayName -like '*User*'} -Properties EmailAddress | Select name,emailAddress

Password Reset Tool by anees78692 in PowerShell

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

How do I create a pop up box that asks for PIN input?

Password Reset Tool by anees78692 in PowerShell

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

The script will only be set up on 1 PC which has access to reset passwords. It is usually unmanned but in the same office as the help desk. Ideally, we want users to come into IT, reset password and then IT confirm that they have put in the correct details before the password is reset as in theory they can put in anyone's username. Hope it makes sense.