I love the idea of this place and can’t wait to check it out. I love that Cincinnati keep having opening creative locations!
Follow on Facebook: https://www.facebook.com/pages/Arcade-Legacy/116078858447305
I love the idea of this place and can’t wait to check it out. I love that Cincinnati keep having opening creative locations!
Follow on Facebook: https://www.facebook.com/pages/Arcade-Legacy/116078858447305
One of my favorite games of all times was a game name Bastion that came out a few years ago. Their next game comes out on May 20th and I could not be more excited. This game will be available on PS4 and Steam. I will be purchasing day one on Steam or maybe pre-ordering. Check out the trailer:
Per-order on Steam: http://store.steampowered.com/app/237930/
I am using the Quest AD tools but the qad commands could be changed to use the native AD commands. This was created to look for the checkbox in Active Directory Users and Computers named: Manager Can Update Membership List just under the managed by on the group object.
$file = “C:\Workspace\groupslist.txt”
$groups = Get-qADGroup * -sizelimit 0
foreach ($item in $groups)
{
write-host “Checking AD Group: “$item.name
if ($item.ManagedBy -ne $null) {
$check = Get-qadpermission $item -rights WriteProperty -account $item.ManagedBy -SchemaDefault
$fullline = ($item.name + “|” + $check.rights + “|” + $item.ManagedBy + “|” + $item.GroupType + “|” + $item.Description )
Add-Content $file $fullline
}
}
I am sure by now most people have heard of the IE all version vulnerability. If you have not spend some time here. Word on the street is the fix may not be around for several months so a workaround is in order. I did not want to disable Flash(how would users waste time all day), so the next best thing is unregistering the VGX.DLL. I put together a quick VBscript that can be imported into SCCM(all versions) and deployed to all Windows versions Servers/Workstations. I know MS recommends doing this through GPO but I want some reporting on the change and have the ability to re-trigger on my schedule.
On a 64bit Windows OS the script unregisters the 32bit and 64bit VGX.dll.
On a 32bit Windows OS the script unregisters the 32bit VGX.dll.
The script can be run on all Windows systems in your environment, so far I have tested on 2008,2008r2,2003 and Windows 7.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
Set objWSHShell = WScript.CreateObject("WScript.Shell") Set objFSo = WScript.CreateObject("Scripting.FileSystemObject") if objfso.FolderExists("C:\Program Files (x86)") then wscript.echo "64 and 32" intExitCode = objWSHShell.Run ("regsvr32 /u /s ""%CommonProgramFiles%\Microsoft Shared\VGX\vgx.dll""", 1, True) wscript.echo "64bit Exit Code:" & intExitCode intExitCode = objWSHShell.Run ("c:\windows\syswow64\regsvr32 /u /s ""%CommonProgramFiles(x86)%\Microsoft Shared\VGX\vgx.dll""", 1, True) wscript.echo "32bit Exit Code:" & intExitCode else wscript.echo "32" intExitCode = objWSHShell.Run ("regsvr32 /u /s ""%CommonProgramFiles%\Microsoft Shared\VGX\vgx.dll""", 1, True) wscript.echo "32bit Exit Code:" & intExitCode end if |
I have upgrade the site and am working on some new themes.