full_path stringlengths 31 232 | filename stringlengths 4 167 | content stringlengths 0 48.3M |
|---|---|---|
PowerShellCorpus/PowerShellGallery/ucs-puptr/0.0.3/Functions/Disable-PuptrTest.ps1 | Disable-PuptrTest.ps1 | #requires -version 4
function Disable-PuptrTest {
<#
.SYNOPSIS
Disables a UcsPuptr test
.DESCRIPTION
This function disables a UcsPuptr test in the Diagnostics folder by name
.PARAMETER Name
Name of test to disable
.INPUTS
None
.OUTPUTS
... |
PowerShellCorpus/PowerShellGallery/ucs-puptr/0.0.3/Functions/Import-PuptrConfig.ps1 | Import-PuptrConfig.ps1 | #requires -version 4
function Import-PuptrConfig {
<#
.SYNOPSIS
Import a UcsPuptr configuration file
.DESCRIPTION
This function will import a configuration file into UcsPuptr
.PARAMETER Path
Path to configuration file
.INPUTS
None
.OU... |
PowerShellCorpus/PowerShellGallery/ucs-puptr/0.0.3/Functions/Edit-PuptrConfig.ps1 | Edit-PuptrConfig.ps1 | #requires -version 4
function Edit-PuptrConfig {
<#
.SYNOPSIS
Edit a UcsPuptr configuration file
.DESCRIPTION
This function will use Invoke-Item to open a configuration file
in the default .ps1 editor
.PARAMETER Name
Name of the configuration
Can g... |
PowerShellCorpus/PowerShellGallery/ucs-puptr/0.0.3/Templates/Configuration-Template.ps1 | Configuration-Template.ps1 | $UcsConfiguration = @{}
<########################################################################################
Connection Details
Username = [string] Username for connecting to UCS domains
Domain = [string[]] List of UCS domains to connect to (Hostname or IP)
#>
$UcsConfiguration.Connection... |
PowerShellCorpus/PowerShellGallery/ucs-puptr/0.0.3/Templates/Test-Template.ps1 | Test-Template.ps1 | #requires -Modules Pester, Cisco.UcsManager
[CmdletBinding()]
Param(
# Optionally fix all config drift that is discovered. Defaults to false (off)
[switch]$Remediate = $false,
# Optionally define a different config file to use.
[string]$ConfigName
)
Process {
# Tests
Describe -Name 'Describe ... |
PowerShellCorpus/PowerShellGallery/cFirewall/1.0.1/Examples/Sample_cFirewall.ps1 | Sample_cFirewall.ps1 |
configuration Sample_cFirewall
{
Import-DscResource -ModuleName cFirewall
cFirewallRule FirewallRule1
{
Name = 'Allow Custom Rule'
Action = 'Allow'
Description = 'Created by the cFirewallRule DSC resource.'
Direction = 'Inbound'
Enabled = $true
E... |
PowerShellCorpus/PowerShellGallery/cFirewall/1.0.1/ResourceDesignerScripts/GenerateCFirewallRuleSchema.ps1 | GenerateCFirewallRuleSchema.ps1 |
#requires -Version 4.0 -Modules xDSCResourceDesigner
$ModuleName = 'cFirewall'
$ResourceName = 'cFirewallRule'
$DscResourceProperties = @(
(New-xDscResourceProperty -Attribute Key -Name Name -Type String)
(New-xDscResourceProperty -Attribute Write -Name Action -Type String -ValidateSet 'Allow', 'B... |
PowerShellCorpus/PowerShellGallery/cFirewall/1.0.1/Tests/ResourceDesignerTests.ps1 | ResourceDesignerTests.ps1 |
#requires -Version 4.0 -Modules xDSCResourceDesigner
Split-Path -Path $PSScriptRoot -Parent |
Join-Path -ChildPath 'DSCResources' |
Get-ChildItem -Directory |
Test-xDscResource -Name {$_.FullName} -Verbose
|
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Remove-PulpRpm.ps1 | Remove-PulpRpm.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Remove-PulpRpm {
[CmdletBinding()]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true)]
[PSCustomObject[]]$ContentUnit,
[Parameter(Mandat... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Stop-PulpTask.ps1 | Stop-PulpTask.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Stop-PulpTask {
[Cmdletbinding()]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Port,
[Parameter(Mandatory=$false)]
... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Get-PulpRpmRepo.ps1 | Get-PulpRpmRepo.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Get-PulpRpmRepo {
[CmdletBinding()]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Position=0, ValueFromPipeline=$true)]
[string[]]$Id
)
Begin {
try {
$outBuffer =... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Get-PulpPuppetSyncSchedule.ps1 | Get-PulpPuppetSyncSchedule.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Get-PulpPuppetSyncSchedule {
[CmdletBinding()]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true, ParameterSetName="Objects")]
[PSCustomObject[... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Get-PulpPuppetSyncStatus.ps1 | Get-PulpPuppetSyncStatus.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Get-PulpPuppetSyncStatus {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, Position=0, ValueFromPipeline=$true, Paramet... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Set-PulpPermission.ps1 | Set-PulpPermission.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Set-PulpPermission {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Port,... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Add-PulpContentUnit.ps1 | Add-PulpContentUnit.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Add-PulpContentUnit {
[Cmdletbinding(DefaultParameterSetName='StringsPath')]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).P... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Set-PulpRpmRepo.ps1 | Set-PulpRpmRepo.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Set-PulpRpmRepo {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true, ParameterSetName="Objects")]
... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Remove-PulpRoleMember.ps1 | Remove-PulpRoleMember.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Remove-PulpRoleMember {
[Cmdletbinding(DefaultParameterSetName='UserStringsRoleStrings')]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalC... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Publish-PulpPuppetRepo.ps1 | Publish-PulpPuppetRepo.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Publish-PulpPuppetRepo {
[CmdletBinding()]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, Position=0, ValueFromPipeline=$true, ParameterSetName="Objects")]
[PSCusto... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Remove-PulpIsoRepo.ps1 | Remove-PulpIsoRepo.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Remove-PulpIsoRepo {
[CmdletBinding()]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true)]
[PSCustomObject[]]$Repo
)
Begin {
try {
... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Set-PulpPuppetRepo.ps1 | Set-PulpPuppetRepo.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Set-PulpPuppetRepo {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true, ParameterSetName="Objects"... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/New-PulpSyncSchedule.ps1 | New-PulpSyncSchedule.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function New-PulpSyncSchedule {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Por... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Get-PulpContentUnit.ps1 | Get-PulpContentUnit.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Get-PulpContentUnit {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Port... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Start-PulpSync.ps1 | Start-PulpSync.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Start-PulpSync {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Port,
... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Get-PulpPuppetRepo.ps1 | Get-PulpPuppetRepo.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Get-PulpPuppetRepo {
[CmdletBinding()]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Position=0, ValueFromPipeline=$true)]
[string[]]$Id
)
Begin {
try {
$outBuffe... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Remove-PulpRole.ps1 | Remove-PulpRole.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Remove-PulpRole {
[Cmdletbinding()]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Port,
[Parameter(Mandatory=$false)... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Remove-PulpRpmRepo.ps1 | Remove-PulpRpmRepo.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Remove-PulpRpmRepo {
[CmdletBinding()]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true)]
[PSCustomObject[]]$Repo
)
Begin {
try {
... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Get-PulpPuppetModule.ps1 | Get-PulpPuppetModule.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Get-PulpPuppetModule {
[CmdletBinding(DefaultParameterSetName='Strings')]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$false, Position=0, ValueFromPipeline=$false)]
... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Set-PulpRole.ps1 | Set-PulpRole.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Set-PulpRole {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Port,
... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Get-PulpIsoRepo.ps1 | Get-PulpIsoRepo.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Get-PulpIsoRepo {
[CmdletBinding()]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Position=0, ValueFromPipeline=$true)]
[string[]]$Id
)
Begin {
try {
$outBuffer =... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Get-PulpRpmSyncSchedule.ps1 | Get-PulpRpmSyncSchedule.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Get-PulpRpmSyncSchedule {
[CmdletBinding()]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true, ParameterSetName="Objects")]
[PSCustomObject[]]$... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Remove-PulpPuppetRepo.ps1 | Remove-PulpPuppetRepo.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Remove-PulpPuppetRepo {
[CmdletBinding()]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true)]
[PSCustomObject[]]$Repo
)
Begin {
try ... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/New-PulpIsoRepo.ps1 | New-PulpIsoRepo.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function New-PulpIsoRepo {
[CmdletBinding()]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true, ParameterSetName="Objects")]
[object[]]$Repo,
[Pa... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Copy-PulpContentUnit.ps1 | Copy-PulpContentUnit.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Copy-PulpContentUnit {
[Cmdletbinding()]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Port,
[Parameter(Mandatory=$fa... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Get-PulpRpm.ps1 | Get-PulpRpm.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Get-PulpRpm {
[CmdletBinding(DefaultParameterSetName='Strings')]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$false, Position=0, ValueFromPipeline=$false)]
[string]$Nam... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Get-PulpLocalConfig.ps1 | Get-PulpLocalConfig.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Get-PulpLocalConfig {
[Cmdletbinding()]
Param(
[Parameter(Mandatory=$false)] [string]$File = '~\.pulp\admin.json',
[Parameter(Mandatory=$false)] [switch]$Server,
[Parameter(Mandatory=$false)] [switch]$Port,
[Parameter(Mandatory=$false)] [switc... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Copy-PulpPuppetModule.ps1 | Copy-PulpPuppetModule.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Copy-PulpPuppetModule {
[CmdletBinding()]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true)]
[PSCustomObject[]]$ContentUnit,
[Parameter... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Get-PulpRole.ps1 | Get-PulpRole.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Get-PulpRole {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Port,
... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Publish-PulpRepo.ps1 | Publish-PulpRepo.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Publish-PulpRepo {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Port,
... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/New-PulpRole.ps1 | New-PulpRole.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function New-PulpRole {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Port,
... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Start-PulpRpmSync.ps1 | Start-PulpRpmSync.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Start-PulpRpmSync {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, Position=0, ValueFromPipeline=$true, ParameterSetNa... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Remove-PulpPuppetSyncSchedule.ps1 | Remove-PulpPuppetSyncSchedule.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Remove-PulpPuppetSyncSchedule {
[CmdletBinding()]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true)]
[PSCustomObject[]]$SyncSchedule
)
B... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/New-PulpPuppetRepo.ps1 | New-PulpPuppetRepo.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function New-PulpPuppetRepo {
[CmdletBinding()]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true, ParameterSetName="Objects")]
[object[]]$Repo,
... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Get-PulpBasicAuthHeaders.ps1 | Get-PulpBasicAuthHeaders.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Get-PulpBasicAuthHeaders {
[Cmdletbinding()]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Port,
[Parameter(Mandator... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/New-PulpRpmRepo.ps1 | New-PulpRpmRepo.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function New-PulpRpmRepo {
[CmdletBinding()]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true, ParameterSetName="Objects")]
[object[]]$Repo,
[Pa... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/New-PulpIsoSyncSchedule.ps1 | New-PulpIsoSyncSchedule.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function New-PulpIsoSyncSchedule {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true, ParameterSetName="Ob... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Set-PulpIsoRepo.ps1 | Set-PulpIsoRepo.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Set-PulpIsoRepo {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true, ParameterSetName="Objects")]
... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Set-PulpUser.ps1 | Set-PulpUser.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Set-PulpUser {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Port,
... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Get-PulpTask.ps1 | Get-PulpTask.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Get-PulpTask {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Port,
... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Remove-PulpSyncSchedule.ps1 | Remove-PulpSyncSchedule.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Remove-PulpSyncSchedule {
[Cmdletbinding()]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Port,
[Parameter(Mandatory... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Get-PulpIsoSyncSchedule.ps1 | Get-PulpIsoSyncSchedule.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Get-PulpIsoSyncSchedule {
[CmdletBinding()]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true, ParameterSetName="Objects")]
[PSCustomObject[]]$... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Remove-PulpPuppetModule.ps1 | Remove-PulpPuppetModule.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Remove-PulpPuppetModule {
[CmdletBinding()]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true)]
[PSCustomObject[]]$ContentUnit,
[Paramet... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/New-PulpUser.ps1 | New-PulpUser.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function New-PulpUser {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Port,
... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Start-PulpIsoSync.ps1 | Start-PulpIsoSync.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Start-PulpIsoSync {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, Position=0, ValueFromPipeline=$true, ParameterSetNa... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Add-PulpRoleMember.ps1 | Add-PulpRoleMember.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Add-PulpRoleMember {
[Cmdletbinding(DefaultParameterSetName='UserStringsRoleStrings')]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConf... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Get-PulpCertificate.ps1 | Get-PulpCertificate.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Get-PulpCertificate{
[Cmdletbinding()]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Port,
[Parameter(Mandatory=$fal... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Copy-PulpIso.ps1 | Copy-PulpIso.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Copy-PulpIso {
[CmdletBinding()]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true)]
[PSCustomObject[]]$ContentUnit,
[Parameter(Mandator... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/New-PulpRepo.ps1 | New-PulpRepo.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function New-PulpRepo {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Port,
... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Get-PulpIso.ps1 | Get-PulpIso.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Get-PulpIso {
[CmdletBinding(DefaultParameterSetName='Strings')]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$false, Position=0, ValueFromPipeline=$false)]
[string]... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Invoke-PulpRestMethod.ps1 | Invoke-PulpRestMethod.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Invoke-PulpRestMethod {
[Cmdletbinding()]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Port,
[Parameter(Mandatory=$... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Remove-PulpIsoSyncSchedule.ps1 | Remove-PulpIsoSyncSchedule.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Remove-PulpIsoSyncSchedule {
[CmdletBinding()]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true)]
[PSCustomObject[]]$SyncSchedule
)
Begi... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Add-PulpRpm.ps1 | Add-PulpRpm.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Add-PulpRpm {
[CmdletBinding(DefaultParameterSetName='StringsPath')]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true, ParameterSetName="ObjectsPat... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Copy-PulpRpm.ps1 | Copy-PulpRpm.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Copy-PulpRpm {
[CmdletBinding()]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true)]
[PSCustomObject[]]$ContentUnit,
[Parameter(Mandator... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Get-PulpPermission.ps1 | Get-PulpPermission.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Get-PulpPermission {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Port,... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Remove-PulpRepo.ps1 | Remove-PulpRepo.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Remove-PulpRepo {
[Cmdletbinding()]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Port,
[Parameter(Mandatory=$false)... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Remove-PulpContentUnit.ps1 | Remove-PulpContentUnit.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Remove-PulpContentUnit {
[Cmdletbinding()]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Port,
[Parameter(Mandatory=... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Get-PulpUser.ps1 | Get-PulpUser.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Get-PulpUser {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Port,
... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Get-PulpSyncSchedule.ps1 | Get-PulpSyncSchedule.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Get-PulpSyncSchedule {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Por... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Publish-PulpRpmRepo.ps1 | Publish-PulpRpmRepo.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Publish-PulpRpmRepo {
[CmdletBinding()]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, Position=0, ValueFromPipeline=$true, ParameterSetName="Objects")]
[PSCustomOb... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Remove-PulpUser.ps1 | Remove-PulpUser.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Remove-PulpUser {
[Cmdletbinding()]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Port,
[Parameter(Mandatory=$false)... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/New-PulpRpmSyncSchedule.ps1 | New-PulpRpmSyncSchedule.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function New-PulpRpmSyncSchedule {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true, ParameterSetName="Ob... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Add-PulpIso.ps1 | Add-PulpIso.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Add-PulpIso {
[CmdletBinding(DefaultParameterSetName='StringsPath')]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true, ParameterSetName="ObjectsPat... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Start-PulpPuppetSync.ps1 | Start-PulpPuppetSync.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Start-PulpPuppetSync {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, Position=0, ValueFromPipeline=$true, ParameterSe... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Get-PulpSyncStatus.ps1 | Get-PulpSyncStatus.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Get-PulpSyncStatus {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Port,... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Get-PulpIsoSyncStatus.ps1 | Get-PulpIsoSyncStatus.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Get-PulpIsoSyncStatus {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, Position=0, ValueFromPipeline=$true, ParameterS... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Get-PulpRepo.ps1 | Get-PulpRepo.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Get-PulpRepo {
[Cmdletbinding()]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Port,
[Parameter(Mandatory=$f... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Publish-PulpIsoRepo.ps1 | Publish-PulpIsoRepo.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Publish-PulpIsoRepo {
[CmdletBinding()]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, Position=0, ValueFromPipeline=$true, ParameterSetName="Objects")]
[PSCustomOb... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Add-PulpPuppetModule.ps1 | Add-PulpPuppetModule.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Add-PulpPuppetModule {
[CmdletBinding(DefaultParameterSetName='StringsPath')]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true, ParameterSetName="O... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Get-PulpRpmSyncStatus.ps1 | Get-PulpRpmSyncStatus.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Get-PulpRpmSyncStatus {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, Position=0, ValueFromPipeline=$true, ParameterS... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Set-PulpLocalConfig.ps1 | Set-PulpLocalConfig.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Set-PulpLocalConfig {
[Cmdletbinding()]
Param(
[Parameter(Mandatory=$false)]
[string]$File = '~\.pulp\admin.json',
[Parameter(Mandatory=$false)]
[switch]$Replace,
[Parameter(Mandatory=$true, Position=0, ValueFromPipeline=$true, Parame... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Remove-PulpRpmSyncSchedule.ps1 | Remove-PulpRpmSyncSchedule.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Remove-PulpRpmSyncSchedule {
[CmdletBinding()]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true)]
[PSCustomObject[]]$SyncSchedule
)
Begi... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/New-PulpPuppetSyncSchedule.ps1 | New-PulpPuppetSyncSchedule.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function New-PulpPuppetSyncSchedule {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true, ParameterSetName=... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Remove-PulpIso.ps1 | Remove-PulpIso.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Remove-PulpIso {
[CmdletBinding()]
Param(
[string]$Server,
[int]$Port,
[string]$Protocol,
[string]$AuthenticationMethod,
[Parameter(Mandatory=$true, ValueFromPipeline=$true)]
[PSCustomObject[]]$ContentUnit,
[Parameter(Mandat... |
PowerShellCorpus/PowerShellGallery/powershell-pulp/2.0.1/public/Set-PulpRepo.ps1 | Set-PulpRepo.ps1 | # .ExternalHelp powershell-pulp-help.xml
Function Set-PulpRepo {
[Cmdletbinding(DefaultParameterSetName='Strings')]
Param(
[Parameter(Mandatory=$false)]
[string]$Server = (Get-PulpLocalConfig -Server).Server,
[Parameter(Mandatory=$false)]
[int]$Port = (Get-PulpLocalConfig -Port).Port,
... |
PowerShellCorpus/PowerShellGallery/Powershell.Helper.Extension/1.9/TroubleShootLimit-Job.ps1 | TroubleShootLimit-Job.ps1 |
#
Test-ModuleManifest .\Powershell.Helper.Extension.psd1
Import-Module .\Powershell.Helper.Extension.psd1
$VerbosePreference="Continue"
$path = Join-Path(Join-Path($env:ALLUSERSPROFILE)$(New-Guid).ToString())$(New-Guid).ToString()
$pattern = "([a-zA-Z:]{2,2})*"
$found = $path -match $pattern
if($found){
$... |
PowerShellCorpus/PowerShellGallery/Powershell.Helper.Extension/1.9/PrepareModuleForDeployment.ps1 | PrepareModuleForDeployment.ps1 | # Modify the version number of the Powershell manifest file
# Modify the release notes for the current release
#vUpdate-ModuleManifest -Path $(join-path($path)"$name.psd1") -Tags $tag -FunctionsToExport $functionsToExport -AliasesToExport $AliasesToExport
# Add the release notes to the Readme.md file
#deploy... |
PowerShellCorpus/PowerShellGallery/Powershell.Helper.Extension/1.9/Powershell.Helper.Extension.Tests.ps1 | Powershell.Helper.Extension.Tests.ps1 | #Reference: https://www.simple-talk.com/sysadmin/powershell/practical-powershell-unit-testing-getting-started/
$srcModule = $MyInvocation.MyCommand.Path `
-replace '\.Tests\.', '.' -replace "ps1", "psd1"
Import-Module $srcModule
InModuleScope "Powershell.Helper.Extension" {
Describe "Add-Path" {
... |
PowerShellCorpus/PowerShellGallery/ReportingServicesTools/0.0.1.1/Install.ps1 | Install.ps1 | [CmdletBinding()]
param (
[string]$Path
)
$localpath = $(Join-Path -Path (Split-Path -Path $profile) -ChildPath '\Modules\ReportingServicesTools')
try
{
if ($Path.length -eq 0)
{
if ($PSCommandPath.Length -gt 0)
{
$path = Split-Path $PSCommandPath
if ($path -match "github")
{
$path = $localpath... |
PowerShellCorpus/PowerShellGallery/ReportingServicesTools/0.0.1.1/Test.ps1 | Test.ps1 | Invoke-Pester -Path .\Tests\CatalogItems |
PowerShellCorpus/PowerShellGallery/ReportingServicesTools/0.0.1.1/Libraries/library.ps1 | library.ps1 | $source = @"
using System.Management.Automation;
namespace Microsoft.ReportingServicesTools
{
/// <summary>
/// Static class containing connection information to the reporting server.
/// </summary>
public static class ConnectionHost
{
/// <summary>
/// The name of the computer to c... |
PowerShellCorpus/PowerShellGallery/ReportingServicesTools/0.0.1.1/Functions/Utilities/Connect-RsReportServer.ps1 | Connect-RsReportServer.ps1 | # Copyright (c) 2017 Friedrich Weinmann. All Rights Reserved.
# Licensed under the MIT License (MIT)
function Connect-RsReportServer
{
<#
.SYNOPSIS
Connects to a Reporting Server
.DESCRIPTION
This function can be used to specify default connection information to con... |
PowerShellCorpus/PowerShellGallery/ReportingServicesTools/0.0.1.1/Functions/Utilities/New-RsWebServiceProxy.ps1 | New-RsWebServiceProxy.ps1 | # Copyright (c) 2016 Microsoft Corporation. All Rights Reserved.
# Licensed under the MIT License (MIT)
function New-RsWebServiceProxy
{
<#
.SYNOPSIS
This script creates a web service proxy object to the Reporting Services SOAP endpoint.
.DESCRIPTION
This script cre... |
PowerShellCorpus/PowerShellGallery/ReportingServicesTools/0.0.1.1/Functions/Utilities/New-RsConfigurationSettingObject.ps1 | New-RsConfigurationSettingObject.ps1 | # Copyright (c) 2016 Microsoft Corporation. All Rights Reserved.
# Licensed under the MIT License (MIT)
function New-RsConfigurationSettingObject
{
<#
.SYNOPSIS
This script creates a new WMI Object that is connected to Reporting Services WMI Provider.
.DESCRIPTION
T... |
PowerShellCorpus/PowerShellGallery/ReportingServicesTools/0.0.1.1/Functions/Security/Revoke-RsSystemAccess.ps1 | Revoke-RsSystemAccess.ps1 | # Copyright (c) 2016 Microsoft Corporation. All Rights Reserved.
# Licensed under the MIT License (MIT)
function Revoke-RsSystemAccess
{
<#
.SYNOPSIS
This script revokes access to SQL Server Reporting Services Instance from users/groups.
.DESCRIPTION
This script rev... |
PowerShellCorpus/PowerShellGallery/ReportingServicesTools/0.0.1.1/Functions/Security/Revoke-RsCatalogItemAccess.ps1 | Revoke-RsCatalogItemAccess.ps1 | # Copyright (c) 2016 Microsoft Corporation. All Rights Reserved.
# Licensed under the MIT License (MIT)
function Revoke-RsCatalogItemAccess
{
<#
.SYNOPSIS
This script revokes access to catalog items from users/groups.
.DESCRIPTION
This script revokes all access on t... |
PowerShellCorpus/PowerShellGallery/ReportingServicesTools/0.0.1.1/Functions/Security/Grant-RsSystemRole.ps1 | Grant-RsSystemRole.ps1 | # Copyright (c) 2016 Microsoft Corporation. All Rights Reserved.
# Licensed under the MIT License (MIT)
function Grant-RsSystemRole
{
<#
.SYNOPSIS
This script grants access to SQL Server Reporting Services Instance to users/groups.
.DESCRIPTION
This script grants t... |
PowerShellCorpus/PowerShellGallery/ReportingServicesTools/0.0.1.1/Functions/Security/Grant-RsCatalogItemRole.ps1 | Grant-RsCatalogItemRole.ps1 | # Copyright (c) 2016 Microsoft Corporation. All Rights Reserved.
# Licensed under the MIT License (MIT)
function Grant-RsCatalogItemRole
{
<#
.SYNOPSIS
This script grants access to catalog items to users/groups.
.DESCRIPTION
This script grants the specified role ac... |
PowerShellCorpus/PowerShellGallery/ReportingServicesTools/0.0.1.1/Functions/CatalogItems/Set-RsDataSetReference.ps1 | Set-RsDataSetReference.ps1 | # Copyright (c) 2016 Microsoft Corporation. All Rights Reserved.
# Licensed under the MIT License (MIT)
function Set-RsDataSetReference
{
<#
.SYNOPSIS
Overrides the reference of a report to a shared dataset.
.DESCRIPTION
Overrides the reference of a report to a sha... |
PowerShellCorpus/PowerShellGallery/ReportingServicesTools/0.0.1.1/Functions/CatalogItems/Get-RsDataSource.ps1 | Get-RsDataSource.ps1 | # Copyright (c) 2016 Microsoft Corporation. All Rights Reserved.
# Licensed under the MIT License (MIT)
function Get-RsDataSource
{
<#
.SYNOPSIS
This script retrieves information about data source on Report Server.
.DESCRIPTION
This script retrieves information abou... |
PowerShellCorpus/PowerShellGallery/ReportingServicesTools/0.0.1.1/Functions/CatalogItems/Write-RsCatalogItem.ps1 | Write-RsCatalogItem.ps1 | # Copyright (c) 2016 Microsoft Corporation. All Rights Reserved.
# Licensed under the MIT License (MIT)
function Write-RsCatalogItem
{
<#
.SYNOPSIS
Uploads an item from disk to a report server.
.DESCRIPTION
Uploads an item from disk to a report server.
... |
PowerShellCorpus/PowerShellGallery/ReportingServicesTools/0.0.1.1/Functions/CatalogItems/Set-RsDataSource.ps1 | Set-RsDataSource.ps1 | # Copyright (c) 2016 Microsoft Corporation. All Rights Reserved.
# Licensed under the MIT License (MIT)
function Set-RsDataSource
{
<#
.SYNOPSIS
This script updates information about a data source on Report Server.
.DESCRIPTION
This script updates information about... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.