Jump to content

BillyAB

Members
  • Posts

    16
  • Joined

  • Last visited

Reputation

919 Excellent

1 Follower

About BillyAB

Personal Information

  • Occupation
    Lead IT Technician
  • X
  • Homepage
    http://billyab.co.uk

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. I've done this using a shortcut to a PowerShell script that has been compiled to an exe that looks for the latest version in the folder. The exe sits on a share and we put a shortcut to it on the desktop for users, always finds the highest version number in the folder and runs that. You can download my compiled exe here: RunFS.zip I understand you might not trust my exe, so the PowerShell code is below, and you can compile it to an exe using PS2EXE yourself. $FS = Get-ChildItem -Path "${env:ProgramFiles}\Google\Drive File Stream" -Directory | Where-Object { $_.Name -match '\d+\.\d+\.\d+\.\d+' } | Sort-Object -Property { [Version]$_.Name } | Select-Object -Last 1 -ExpandProperty FullName Start-Process -FilePath ('{0}\{1}' -f $FS,'GoogleDriveFS.exe')
  2. Thanks. If anyone else stumbles upon this looking for it, I managed to find the Generate-Class-Attribute, it is in Vendor Specific RADIUS attributes, and then when you add it, OK and re-open the properties box it moves into the standard attributes area. Just need to get in touch with SBB to add the @NSW-00XXX
  3. Thanks for getting back. I assume Schools Broadband do the username amending? Where do I change the generate-class-attribute in NPS, I'm sure it's in a sensible place, but I can't see that option.
  4. Did you ever manage to get this working @caffrey
  5. Have you thought about open sourcing it on GitHub or the like, could allow other people to assist with new features/bug fixes, and if you used something like Git/GitHub you'd still be in control of what got pulled back in and merged.
  6. Recently been to Norfolk so here are a few from my trip, the full album is here: Cloud Cuckoo by William Beacroft, on Flickr Broads by William Beacroft, on Flickr Level Crossing by William Beacroft, on Flickr Cromer Streets by William Beacroft, on Flickr
  7. Yeah, we are running radius with radius assigned VLANs on the UniFi Kit.
  8. Very nice, I've just got the 6D mk2 and that lens. I need to get out and use the thing.
  9. Nice Photo @MrKJLS What lens/camera is it?
  10. Food Thief by William Beacroft, on Flickr Food Theif by William Beacroft, on Flickr Northumberland by William Beacroft, on Flickr
  11. I don't know if this will work for Windows 10 I'm unable to test, but it worked on Windows 7 x64. A run Command Line as the first in "state restore" %SCRIPTROOT%\BHSDisableHID.cmd Followed immediately by a restart. Then right at the end, another Run Command Line %SCRIPTROOT%\BHSEnableHID.cmd Followed immediately by a restart. Scripts: BHSDisableHID.cmd :: Disable the keyboard and mouse SET SERVICES=HKLM\SYSTEM\CurrentControlSet\Services REG ADD %SERVICES%\kbdclass /v Start /t REG_DWORD /d 4 /f REG ADD %SERVICES%\mouclass /v Start /t REG_DWORD /d 4 /f ECHO Keyboard and Mouse Disabled BHSEnableHID.cmd REM Enable the keyboard and mouse SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx REG ADD %KEY%\996 /VE /D "Unlocking Mouse" /f REG ADD %KEY%\996 /V 1 /D "REG ADD HKLM\SYSTEM\CurrentControlSet\Services\mouclass /v Start /t REG_DWORD /d 1 /f" /f REG ADD %KEY%\997 /VE /D "Unlocking Keyboard" /f REG ADD %KEY%\997 /V 1 /D "REG ADD HKLM\SYSTEM\CurrentControlSet\Services\kbdclass /v Start /t REG_DWORD /d 1 /f" /f ECHO Enableing HID Devices
  12. I second this, we had 3 papers in one sitting yesterday, it was an RE Short course I think.
  13. This has now resolved itself for me, hopefully its the same for everyone else.
  14. Lets hope so, I didn't have much when I spoke to Google, although I'm not in LGfL and are using Schools Broadband so its not just and issue with your internet connection.
×
×
  • Create New...