View iso contents
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Microsoft-Windows-InternationalFeatures-Taiwan-Package.cab | |
Microsoft-Windows-LanguageFeatures-Basic-af-za-Package.cab | |
Microsoft-Windows-LanguageFeatures-Basic-ar-sa-Package.cab | |
Microsoft-Windows-LanguageFeatures-Basic-as-in-Package.cab | |
Microsoft-Windows-LanguageFeatures-Basic-az-latn-az-Package.cab | |
Microsoft-Windows-LanguageFeatures-Basic-bg-bg-Package.cab | |
Microsoft-Windows-LanguageFeatures-Basic-bn-bd-Package.cab | |
Microsoft-Windows-LanguageFeatures-Basic-bn-in-Package.cab | |
Microsoft-Windows-LanguageFeatures-Basic-bs-latn-ba-Package.cab | |
Microsoft-Windows-LanguageFeatures-Basic-ca-es-Package.cab |
View Start Layout 1607
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<LayoutModificationTemplate | |
xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification" | |
xmlns:defaultlayout="http://schemas.microsoft.com/Start/2014/FullDefaultLayout" | |
xmlns:start="http://schemas.microsoft.com/Start/2014/StartLayout" | |
xmlns:taskbar="http://schemas.microsoft.com/Start/2014/TaskbarLayout" | |
Version="1"> | |
<LayoutOptions StartTileGroupsColumnCount="1" /> | |
<DefaultLayoutOverride> | |
<StartLayoutCollection> |
View get-folder sizes.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#requires -version 2 | |
<# | |
.SYNOPSIS | |
Gets folder sizes using COM and by default with a fallback to robocopy.exe, with the | |
logging only option, which makes it not actually copy or move files, but just list them, and | |
the end summary result is parsed to extract the relevant data. | |
There is a -ComOnly parameter for using only COM, and a -RoboOnly parameter for using only |
View Repair-ACL.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Repairs acl and perms for users folders | |
$paths = (Get-ChildItem -Path "\\company\dfs\Users\") | |
if ((Get-Module).name -Match "PSCX") | |
{}#Null | |
else |
View get ad user info from list.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ForEach ($user in $users) { | |
Get-ADUser -Filter{displayName -like $user} -Properties canonicalname | select name,samaccountname,enabled,canonicalname,@{Name='Groups';Expression={((Get-ADPrincipalGroupMembership $_.samaccountname).name) -join ', '}} | |
} |
View Get AD user Info.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-ADGroupMember "Domain Admins" | select name,samaccountname, @{Name='Enabled';Expression={(Get-ADUser $_.samaccountname).Enabled}},@{Name='Location';Expression={(Get-ADUser $_ -Properties * ).CanonicalName}},@{Name='Groups';Expression={(Get-ADPrincipalGroupMembership $_.samaccountname).name} -join ';'} |
View UserMigration.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.NOTES | |
=========================================================================== | |
Created on: 11/01/2017 11:59 | |
Created by: Dan Padgett (C) | |
Filename: UserMigration.ps1 | |
Version: 1.0 | |
Web: www.execmgr.net | |
=========================================================================== |
View Set-SIP.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Sets UPN to ProxyAddresses AD field for SIP entry | |
.DESCRIPTION | |
Script will search through active directory and set all users with NO SIP address to have a SIP matching the users UPN | |
.PARAMETER $OU | |
Enter full distinguised name of OU you wish to limit search to | |
.NOTES | |
Version: 1.0 | |
Author: dpadgett |
View W10-Start.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<LayoutModificationTemplate | |
xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification" | |
xmlns:defaultlayout="http://schemas.microsoft.com/Start/2014/FullDefaultLayout" | |
xmlns:start="http://schemas.microsoft.com/Start/2014/StartLayout" | |
xmlns:taskbar="http://schemas.microsoft.com/Start/2014/TaskbarLayout" | |
Version="1"> | |
<LayoutOptions StartTileGroupsColumnCount="1" /> | |
<DefaultLayoutOverride> | |
<StartLayoutCollection> |
View RemoveObjects.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.NOTES | |
=========================================================================== | |
Created by: Dan Padgett (C) | |
Organization: www.execmgr.net | |
Version: 1.0 | |
=========================================================================== | |
.SYNOPSIS | |
Removal Tool for SCCM and AD Objects |
OlderNewer