full_path
stringlengths
31
232
filename
stringlengths
4
167
content
stringlengths
0
48.3M
PowerShellCorpus/PowerShellGallery/PSGSuite/1.2.1/Public/New-GSUserVerificationCodes.ps1
New-GSUserVerificationCodes.ps1
function New-GSUserVerificationCodes { [cmdletbinding()] Param ( [parameter(Mandatory=$true,Position=0,ValueFromPipelineByPropertyName=$true)] [Alias("primaryEmail")] [ValidateNotNullOrEmpty()] [String] $User, [parameter(Mandatory=$false)] [String] ...
PowerShellCorpus/PowerShellGallery/PSGSuite/1.2.1/Public/Get-GSUserSchemaInfo.ps1
Get-GSUserSchemaInfo.ps1
function Get-GSUserSchemaInfo { [cmdletbinding()] Param ( [parameter(ParameterSetName='CheckSpecific',Mandatory=$true)] [String[]] $Schema, [parameter(ParameterSetName='CheckAll',Mandatory=$true)] [switch] $CheckAllSchemas, [parameter(Mandatory=$false)] ...
PowerShellCorpus/PowerShellGallery/PSGSuite/1.2.1/Public/New-GSCalendarEvent.ps1
New-GSCalendarEvent.ps1
function New-GSCalendarEvent { [cmdletbinding()] Param ( [parameter(Mandatory=$false)] [String] $CalendarID="primary", [parameter(Mandatory=$false)] [String] $Summary, [parameter(Mandatory=$false)] [String] $Description, [parameter(Man...
PowerShellCorpus/PowerShellGallery/PSGSuite/1.2.1/Public/New-GSSheet.ps1
New-GSSheet.ps1
function New-GSSheet { [cmdletbinding()] Param ( [parameter(Mandatory=$false)] [String] $SheetTitle, [parameter(Mandatory=$false)] [ValidateNotNullOrEmpty()] [String] $Owner = $Script:PSGSuite.AdminEmail, [parameter(Mandatory=$false)] [...
PowerShellCorpus/PowerShellGallery/PSGSuite/1.2.1/Public/Switch-PSGSuiteDomain.ps1
Switch-PSGSuiteDomain.ps1
function Switch-PSGSuiteDomain { Param ( [parameter(Mandatory=$true,Position=0)] [ValidateNotNullOrEmpty()] [String] $Domain, [parameter(Mandatory=$false)] [switch] $SetToDefault, [parameter(Mandatory=$false)] [switch] $ShowCommand ) ...
PowerShellCorpus/PowerShellGallery/PSGSuite/1.2.1/Public/Remove-GSGmailDelegate.ps1
Remove-GSGmailDelegate.ps1
function Remove-GSGmailDelegate { [cmdletbinding()] Param ( [parameter(Mandatory=$true,Position=0)] [Alias("From","Delegator")] [ValidateNotNullOrEmpty()] [String] $User, [parameter(Mandatory=$true,Position=1)] [Alias("To")] [ValidateNotNullOrEmpty(...
PowerShellCorpus/PowerShellGallery/PSGSuite/1.2.1/Public/New-GSUser.ps1
New-GSUser.ps1
function New-GSUser { <# .Synopsis Create a new Google user .DESCRIPTION Create a new Google user, allowing for full property setting on creation .EXAMPLE New-GSUser -PrimaryEmail john.smith@domain.com -GivenName John -FamilyName Smith -Password Password123 -ChangePasswordAtNextLogin True -OrgUnitPath "...
PowerShellCorpus/PowerShellGallery/PSGSuite/1.2.1/Public/Get-GSSheetInfo.ps1
Get-GSSheetInfo.ps1
function Get-GSSheetInfo { [cmdletbinding()] Param ( [parameter(Mandatory=$true)] [String] $SpreadsheetId, [parameter(Mandatory=$false)] [ValidateNotNullOrEmpty()] [String] $Owner = $Script:PSGSuite.AdminEmail, [parameter(Mandatory=$false)] ...
PowerShellCorpus/PowerShellGallery/SqlServerPatcher/0.1.1/LoadDllLibraries.ps1
LoadDllLibraries.ps1
# $DacpacDllPath = 'C:\Git\Microsoft.SqlDb.DAC.12\tools' # $SqlDacDll = Join-Path $dacpacDllPath 'Microsoft.SqlServer.Dac.dll' # add-type -path $SqlDacDll #
PowerShellCorpus/PowerShellGallery/PushBullet/1.0/PushBullet.ps1
PushBullet.ps1
cls function Get-PushbulletME { [CmdletBinding()] [OutputType([System.Management.Automation.PSCustomObject])] param( [Parameter(ValueFromPipeline=$true)] [System.String] $AccessToken, [Parameter(ValueFromPipeline,ValueFromPipelineByPropertyName,HelpMessage="192.168.1.2:9480" )] [System.String]...
PowerShellCorpus/PowerShellGallery/ArcAdminTools/0.1.14/Public/New-ArcModule.ps1
New-ArcModule.ps1
function New-ArcModule { <# .SYNOPSIS Creates scaffolding for new module. .DESCRIPTION Creates basic module with files downloaded from mczerniawski\BuildModule github repo. .EXAMPLE $moduleParams =@{ ModulePath = 'C:\Repo\GIT' ModuleName = 'ArcHyperV' Aut...
PowerShellCorpus/PowerShellGallery/ArcAdminTools/0.1.14/Public/Get-FunctionTemplate.ps1
Get-FunctionTemplate.ps1
function Get-FunctionTemplate { <# .SYNOPSIS .DESCRIPTION .PARAMETER ComputerName .EXAMPLE .INPUTS .OUTPUTS #> [CmdletBinding()] Param( [Parameter(ValueFromPipeline=$True, Mandatory=$True, ValueFromPipelineByPropertyName=$True)] [string[]...
PowerShellCorpus/PowerShellGallery/ArcAdminTools/0.1.14/Public/ConvertTo-HashtableFromJSON.ps1
ConvertTo-HashtableFromJSON.ps1
function ConvertTo-HashtableFromJSON { #requires -Version 3.0 <# .SYNOPSIS Retrievies json file from disk and converts to hashtable. .DESCRIPTION Reads file given as Path parameter and using ConvertTo-HashtableFromPsCustomObject converts it to a hashtable. .PARAMETER Path Path...
PowerShellCorpus/PowerShellGallery/ArcAdminTools/0.1.14/Public/Get-FunctionTemplateV5.ps1
Get-FunctionTemplateV5.ps1
function Get-FunctionTemplateV5 { <# .SYNOPSIS .DESCRIPTION .PARAMETER ComputerName .EXAMPLE .INPUTS .OUTPUTS #> [CmdletBinding()] Param( [Parameter(ValueFromPipeline=$True, Mandatory=$True, ValueFromPipelineByPropertyName=$True)] [stri...
PowerShellCorpus/PowerShellGallery/ArcAdminTools/0.1.14/Public/ConvertTo-HashtableFromPsCustomObject.ps1
ConvertTo-HashtableFromPsCustomObject.ps1
function ConvertTo-HashtableFromPsCustomObject { #requires -Version 3.0 <# .SYNOPSIS Converts any powershell custom object to a custom hashtable. .DESCRIPTION Iterates through elements of a custom object and converts them to a corresponding items in a hashtable. Uses recursion to go deep i...
PowerShellCorpus/PowerShellGallery/ArcAdminTools/0.1.14/Public/Module/New-ArcModule.ps1
New-ArcModule.ps1
function New-ArcModule { <# .SYNOPSIS Creates scaffolding for new module. .DESCRIPTION Creates basic module with files downloaded from mczerniawski\BuildModule github repo. .EXAMPLE $moduleParams =@{ ModulePath = 'C:\Repo\GIT' ModuleName = 'ArcHyperV' Aut...
PowerShellCorpus/PowerShellGallery/ArcAdminTools/0.1.14/Public/DHCP/Set-DHCPReservation.ps1
Set-DHCPReservation.ps1
function Set-DHCPReservation { <# .SYNOPSIS Creates DHCP reservation for given parameters. .DESCRIPTION Checks if IP or MAC is already assigned. If not - creates a dhcp reservation. .PARAMETER ComputerName Server with DHCP role to create reservation on. .PARAMETER ScopeId ...
PowerShellCorpus/PowerShellGallery/ArcAdminTools/0.1.14/Public/DHCP/Set-DHCPScope.ps1
Set-DHCPScope.ps1
function Set-DHCPScope { <# .SYNOPSIS Create DHCP scope on given server .DESCRIPTION If given scope doesn't exists it's created. Then Scope values are set. Then Exclusions are created. .PARAMETER ComputerName Server with DHCP Role .PARAMETER ScopeName Scope Name to ...
PowerShellCorpus/PowerShellGallery/ArcAdminTools/0.1.14/Public/SQL/New-SQLLogin.ps1
New-SQLLogin.ps1
function New-SQLLogin { <# .SYNOPSIS Will create login in sql server. Optionally will add it to specified role. .DESCRIPTION It does the following: 1. If no SQL instance is provided it queries server for sql istances and selects if only one exists. If there are more than 1 instance - e...
PowerShellCorpus/PowerShellGallery/ArcAdminTools/0.1.14/Public/SQL/New-SQLDBLogin.ps1
New-SQLDBLogin.ps1
Function New-SQLDBLogin { <# .SYNOPSIS This will add user to SQL db role on given database. .DESCRIPTION If given SQL and DB are valid it will: 1. Check if user exists on SQL server. If so it will: 2. Check if dabatase contains user. If not - will add. 3. Check if database r...
PowerShellCorpus/PowerShellGallery/ArcAdminTools/0.1.14/Public/ActiveDirectory/Add-ToLocalGroup.ps1
Add-ToLocalGroup.ps1
function Add-ToLocalGroup { #requires -Version 3.0 <# .SYNOPSIS Adds a user or a group to local group on a remote computer. .DESCRIPTION Will add user or groupo to a local group on a remote computer. LocalGroup parameter specifies which group it will be, i.e. Administrators, Remote Deskto...
PowerShellCorpus/PowerShellGallery/ArcAdminTools/0.1.14/Public/ActiveDirectory/Get-ADUserGroups.ps1
Get-ADUserGroups.ps1
function Get-ADUserGroups { <# .Synopsis Retrieves all groups user belongs to from specified OU. .DESCRIPTION Retrieves all groups user belongs to from specified OU. If no OU is specified then domain root is set as default. .PARAMETER Identity Can take username or multiple userna...
PowerShellCorpus/PowerShellGallery/xIISCertSBinding/1.0.0.1/DSCResources/xIISCertSBinding/Test.ps1
Test.ps1
Configuration XIIS { Node localhost { xIISCertSBinding Binding { IP = "0.0.0.0" Port = "445" CertThumbprint = "2A4664303BF8F1D7A406E880362B2B2EC3A18AF7" BindingUrl = "asdasd" } } } Remove-Item c:\xiis -Recurse -Force XIIS ...
PowerShellCorpus/PowerShellGallery/xIISCertSBinding/1.0.0.1/DSCResources/xIISCertSBinding/bulid.ps1
bulid.ps1
$Port =New-xDscResourceProperty -Name Port -Type Uint16 -Attribute Key -Description "绑定端口" $IP= New-xDscResourceProperty -Name IP -Type String -Attribute Required -Description "绑定IP" $CertThumbprint =New-xDscResourceProperty -Name CertThumbprint -Type String -Attribute Required -Description "证书指纹" $BindingUrl = New...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Import-Carbon.ps1
Import-Carbon.ps1
<# .SYNOPSIS Imports the Carbon module. .DESCRIPTION Intelligently imports the Carbon module, re-importing it if needed. Carbon will be re-imported if: * a different version is currently loaded * any of Carbon's files were modified since it was last imported with this script * the `Force` switch is set ...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/DscResources/Initialize-CarbonDscResource.ps1
Initialize-CarbonDscResource.ps1
<# .SYNOPSIS Configures PowerShell so that Carbon's DSC resources can use Carbon functions/commands. #> # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/li...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Test-DscTargetResource.ps1
Test-DscTargetResource.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Uninstall-IisWebsite.ps1
Uninstall-IisWebsite.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Install-RegistryKey.ps1
Install-RegistryKey.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Lock-IisConfigurationSection.ps1
Lock-IisConfigurationSection.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/ConvertTo-InheritanceFlag.ps1
ConvertTo-InheritanceFlag.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Set-IisHttpHeader.ps1
Set-IisHttpHeader.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Set-IisHttpRedirect.ps1
Set-IisHttpRedirect.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Get-IisConfigurationSection.ps1
Get-IisConfigurationSection.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Install-Junction.ps1
Install-Junction.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Read-File.ps1
Read-File.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Get-IisHttpRedirect.ps1
Get-IisHttpRedirect.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Remove-HostsEntry.ps1
Remove-HostsEntry.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Get-DscWinEvent.ps1
Get-DscWinEvent.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Get-IdentityPrincipalContext.ps1
Get-IdentityPrincipalContext.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Enable-FirewallStatefulFtp.ps1
Enable-FirewallStatefulFtp.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Revoke-ServicePermission.ps1
Revoke-ServicePermission.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Test-FileShare.ps1
Test-FileShare.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Set-IniEntry.ps1
Set-IniEntry.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Add-GroupMember.ps1
Add-GroupMember.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Set-SslCertificateBinding.ps1
Set-SslCertificateBinding.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Get-ServiceConfiguration.ps1
Get-ServiceConfiguration.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Get-TrustedHost.ps1
Get-TrustedHost.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Get-PerformanceCounter.ps1
Get-PerformanceCounter.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Resolve-PathCase.ps1
Resolve-PathCase.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Reset-MsmqQueueManagerID.ps1
Reset-MsmqQueueManagerID.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Test-PerformanceCounterCategory.ps1
Test-PerformanceCounterCategory.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Get-ComSecurityDescriptor.ps1
Get-ComSecurityDescriptor.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Test-TypeDataMember.ps1
Test-TypeDataMember.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Remove-EnvironmentVariable.ps1
Remove-EnvironmentVariable.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Grant-ServicePermission.ps1
Grant-ServicePermission.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Get-FirewallRule.ps1
Get-FirewallRule.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Install-Service.ps1
Install-Service.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Unlock-IisConfigurationSection.ps1
Unlock-IisConfigurationSection.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Set-IisWebsiteSslCertificate.ps1
Set-IisWebsiteSslCertificate.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Revoke-Permission.ps1
Revoke-Permission.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Uninstall-WindowsFeature.ps1
Uninstall-WindowsFeature.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Enable-IisDirectoryBrowsing.ps1
Enable-IisDirectoryBrowsing.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Remove-RegistryKeyValue.ps1
Remove-RegistryKeyValue.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Clear-TrustedHost.ps1
Clear-TrustedHost.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Revoke-HttpUrlPermission.ps1
Revoke-HttpUrlPermission.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Start-PowerShellProcess.ps1
Start-PowerShellProcess.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Get-ServiceSecurityDescriptor.ps1
Get-ServiceSecurityDescriptor.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Revoke-ComPermission.ps1
Revoke-ComPermission.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Get-ComPermission.ps1
Get-ComPermission.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Test-Identity.ps1
Test-Identity.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Uninstall-PerformanceCounterCategory.ps1
Uninstall-PerformanceCounterCategory.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Set-EnvironmentVariable.ps1
Set-EnvironmentVariable.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Install-MsmqMessageQueue.ps1
Install-MsmqMessageQueue.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/New-Credential.ps1
New-Credential.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Copy-DscResource.ps1
Copy-DscResource.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Test-Permission.ps1
Test-Permission.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Get-MsmqMessageQueue.ps1
Get-MsmqMessageQueue.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Resolve-WindowsFeatureName.ps1
Resolve-WindowsFeatureName.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Compress-Item.ps1
Compress-Item.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Test-Service.ps1
Test-Service.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Test-MsmqMessageQueue.ps1
Test-MsmqMessageQueue.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Test-ScheduledTask.ps1
Test-ScheduledTask.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Get-IisMimeMap.ps1
Get-IisMimeMap.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Get-HttpUrlAcl.ps1
Get-HttpUrlAcl.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Remove-SslCertificateBinding.ps1
Remove-SslCertificateBinding.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Disable-IEEnhancedSecurityConfiguration.ps1
Disable-IEEnhancedSecurityConfiguration.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Get-IisWebsite.ps1
Get-IisWebsite.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Get-PathProvider.ps1
Get-PathProvider.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Get-User.ps1
Get-User.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Get-SslCertificateBinding.ps1
Get-SslCertificateBinding.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Initialize-Lcm.ps1
Initialize-Lcm.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Use-CallerPreference.ps1
Use-CallerPreference.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/New-Junction.ps1
New-Junction.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Get-FileSharePermission.ps1
Get-FileSharePermission.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Set-IisWebsiteID.ps1
Set-IisWebsiteID.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Test-PowerShellIs32Bit.ps1
Test-PowerShellIs32Bit.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Clear-MofAuthoringMetadata.ps1
Clear-MofAuthoringMetadata.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Enable-IEActivationPermission.ps1
Enable-IEActivationPermission.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...
PowerShellCorpus/PowerShellGallery/Carbon/2.4.1/Functions/Uninstall-MsmqMessageQueue.ps1
Uninstall-MsmqMessageQueue.ps1
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed...