full_path stringlengths 31 232 | filename stringlengths 4 167 | content stringlengths 0 48.3M |
|---|---|---|
PowerShellCorpus/PowerShellGallery/posh-azurecli/0.1.10/chocolateyInstall.ps1 | chocolateyInstall.ps1 | $packageName = 'posh-azurecli'
$sourcePath = Split-Path -Parent $MyInvocation.MyCommand.Definition
$targetPath = Join-Path ([System.Environment]::GetFolderPath("MyDocuments")) "WindowsPowerShell\Modules\posh-azurecli"
if(Test-Path $targetPath){
Write-Host "Remove previous module folder"
Remove-Item -Pa... |
PowerShellCorpus/PowerShellGallery/posh-azurecli/0.1.10/chocolateyUninstall.ps1 | chocolateyUninstall.ps1 | $packageName = 'posh-azurecli'
$sourcePath = Split-Path -Parent $MyInvocation.MyCommand.Definition
$targetPath = Join-Path ([System.Environment]::GetFolderPath("MyDocuments")) "WindowsPowerShell\Modules\posh-azurecli"
if(Test-Path $targetPath){
Remove-Item -Path $targetPath -Recurse -Force
}
Uninstall-A... |
PowerShellCorpus/PowerShellGallery/DuctusDigitalWorkspace/1.0.1/NewAuthContext.ps1 | NewAuthContext.ps1 | <#
.SYNOPSIS
Creates a authentication context to be used with all the 'DDW' functions
that requires authentication towards the Sharepoint or specific DDW
environment data.
.DESCRIPTION
This function depends on the following environment variables
* DDW_FUNC_RER_KEY - The function k... |
PowerShellCorpus/PowerShellGallery/DuctusDigitalWorkspace/1.0.1/Provision/SetListItemsContentType.ps1 | SetListItemsContentType.ps1 | function Set-DdwListItemsContentType() {
<#
.SYNOPSIS
Adds content types to a single list or all lists on a web.
.DESCRIPTION
This function will accept a JSON formatted string (action format)
the JSON layout is the following:
{
"actions": [
{
"ad... |
PowerShellCorpus/PowerShellGallery/DuctusDigitalWorkspace/1.0.1/Provision/AddContentTypeFieldsToView.ps1 | AddContentTypeFieldsToView.ps1 | function Add-DdwContentTypeFieldsToView() {
<#
.SYNOPSIS
Adds the fields specified in the content type to a view.
.DESCRIPTION
This function will get the content type and add all non
hidden fields to the specified view. It will also filter
out fields "Content Type", "Name", "Title", a... |
PowerShellCorpus/PowerShellGallery/DuctusDigitalWorkspace/1.0.1/Provision/ConvertFromSPEncodedString.ps1 | ConvertFromSPEncodedString.ps1 | function ConvertFrom-DdwSPEncodedString() {
<#
.SYNOPSIS
Decodes a string of which is encoded as _xNNNN_ instead
of the normal %NNNN encoding.
.DESCRIPTION
This function is useful when e.g. translating a SharePoint
lists EntityTypeName etc.
.EXAMPLE
Decode-DdwString "Sha... |
PowerShellCorpus/PowerShellGallery/DuctusDigitalWorkspace/1.0.1/Provision/AddContentType.ps1 | AddContentType.ps1 | function Add-DdwContentType() {
<#
.SYNOPSIS
Adds content types to a single list or all lists on a web.
.DESCRIPTION
This function will accept a JSON formatted string (action format)
the JSON layout is the following:
{
"actions": [
{
"add-content... |
PowerShellCorpus/PowerShellGallery/DuctusDigitalWorkspace/1.0.1/Provision/ConvertFromRerEventSoap.ps1 | ConvertFromRerEventSoap.ps1 | function ConvertFrom-DdwRerEventSoap() {
<#
.SYNOPSIS
Creates a new Ductus Digital Workspace Event Represeting a
state change in the SharePoint online from a SOAP RER
Envelope.
.DESCRIPTION
This conversion function parses a RER SOAP event posted from
SharePoint. It then extracts ... |
PowerShellCorpus/PowerShellGallery/DuctusDigitalWorkspace/1.0.1/Subscription/RemoveSubscription.ps1 | RemoveSubscription.ps1 | function Remove-DdwSubcription() {
<#
.SYNOPSIS
Removes a subscription from a web or list.
.DESCRIPTION
Depending on parameters provided it will either
remove subscriptions from the web or from a list.
.EXAMPLE
$ctx = CreateAuthContext -Url https://dataductus.sharepoint.com/sites... |
PowerShellCorpus/PowerShellGallery/DuctusDigitalWorkspace/1.0.1/Subscription/AddSubscription.ps1 | AddSubscription.ps1 | function Add-DdwSubcription() {
<#
.SYNOPSIS
Adds a subscription, either Remote Event Reciever or a Webhook onto the
Sharepoint Server to listen for notifications.
.DESCRIPTION
Depending on the parameters passed this function will add different types
of subscriptions. If the $list par... |
PowerShellCorpus/PowerShellGallery/DuctusDigitalWorkspace/1.0.1/Subscription/GetSubscription.ps1 | GetSubscription.ps1 | function Get-DdwSubcription() {
<#
.SYNOPSIS
Gets all or specific event receivers from remote event reciver (RER)
or webhook framework (WHF). Depending on parameters it will use RER
or WHF.
.DESCRIPTION
This method uses either RER or WHF in it's online queries. For each
hit foun... |
PowerShellCorpus/PowerShellGallery/DuctusDigitalWorkspace/1.0.1/Events/NewRemoteEvent.ps1 | NewRemoteEvent.ps1 | function New-DdwRemoteEvent() {
<#
.SYNOPSIS
Creates a new Ductus Digital Workspace Event Represeting a
state change in the SharePoint online.
.DESCRIPTION
.EXAMPLE
$e = New-DdwRemoteEvent -Type Jaja -Url url -CorrelationId corr.id -Properties @{ Pelle = "arne"; Sune="kalle"}
$e ... |
PowerShellCorpus/PowerShellGallery/DuctusDigitalWorkspace/1.0.1/Storage/SetBlob.ps1 | SetBlob.ps1 | function Set-DdwBlob() {
<#
.SYNOPSIS
Writes or overwrites a blob into a container.
.DESCRIPTION
It uses pre-defined arguments for selecting which container
to write to and how the file is matched.
.EXAMPLE
TODO:
#>
[CmdletBinding()]
param(
[Parameter( Mandato... |
PowerShellCorpus/PowerShellGallery/DuctusDigitalWorkspace/1.0.1/Storage/RemoveQueueMessage.ps1 | RemoveQueueMessage.ps1 | function Remove-DdwQueueMessage() {
<#
.SYNOPSIS
Removes a message from the storage queue.
.DESCRIPTION
This function depends on the AuthCtx to be configured
with the azure environment in order to work. Check
the New-DdwAuthContext for more details.
Note that the message must ... |
PowerShellCorpus/PowerShellGallery/DuctusDigitalWorkspace/1.0.1/Storage/GetStoreContextName.ps1 | GetStoreContextName.ps1 | function Get-DdwStoreContextName() {
<#
.SYNOPSIS
Gets a string identifying the store context that may
be used for naming blob containers, storage queues and
tables.
.DESCRIPTION
This is a utility commandlet that renders a storage name.
It can be provided with prefix and postfix... |
PowerShellCorpus/PowerShellGallery/DuctusDigitalWorkspace/1.0.1/Storage/GetQueueList.ps1 | GetQueueList.ps1 | function Get-DdwQueueList() {
<#
.SYNOPSIS
Get a list of queues.
.DESCRIPTION
This function depends on the AuthCtx to be configured
with the azure environment in order to work. Check
the New-DdwAuthContext for more details.
If switches are used to narrow down the list into the
... |
PowerShellCorpus/PowerShellGallery/DuctusDigitalWorkspace/1.0.1/Storage/RemoveBlob.ps1 | RemoveBlob.ps1 | function Remove-DdwBlob() {
<#
.SYNOPSIS
Writes or overwrites a blob into a container.
.DESCRIPTION
It uses pre-defined arguments for selecting which container
to write to and how the file is matched.
.EXAMPLE
TODO:
#>
[CmdletBinding()]
param(
[Parameter( ... |
PowerShellCorpus/PowerShellGallery/DuctusDigitalWorkspace/1.0.1/Storage/AddQueueMessage.ps1 | AddQueueMessage.ps1 | function Add-DdwQueueMessage() {
<#
.SYNOPSIS
Enqueues a message onto a storage queue.
.DESCRIPTION
This function depends on the AuthCtx to be configured
with the azure environment in order to work. Check
the New-DdwAuthContext for more details.
.EXAMPLE
Add-DdwQueueMessage... |
PowerShellCorpus/PowerShellGallery/DuctusDigitalWorkspace/1.0.1/Storage/NewTemporaryFile.ps1 | NewTemporaryFile.ps1 | function New-TemporaryFile() {
[System.IO.Path]::GetTempFileName()
} |
PowerShellCorpus/PowerShellGallery/DuctusDigitalWorkspace/1.0.1/Storage/GetBlobList.ps1 | GetBlobList.ps1 | function Get-DdwBlobList() {
<#
.SYNOPSIS
Gets a list of blobs from a blob container.
.DESCRIPTION
It uses pre-defined arguments for selecting which container
to read from and how the file is matched.
These blob names may then be piped to the Get-DdwBlob to pull out the
actual ... |
PowerShellCorpus/PowerShellGallery/DuctusDigitalWorkspace/1.0.1/Storage/NewBlobStorageContainer.ps1 | NewBlobStorageContainer.ps1 | function New-DdwBlobStorageContainer() {
<#
.SYNOPSIS
Ensures there's a blob storage and container.
.DESCRIPTION
This function depends on the AuthCtx to be configured
with the azure environment in order to work. Check
the New-DdwAuthContext for more details.
If the container i... |
PowerShellCorpus/PowerShellGallery/DuctusDigitalWorkspace/1.0.1/Storage/RemoveQueue.ps1 | RemoveQueue.ps1 | function Remove-DdwQueue() {
<#
.SYNOPSIS
Removes a previous created storage queue.
.DESCRIPTION
This function depends on the AuthCtx to be configured
with the azure environment in order to work. Check
the New-DdwAuthContext for more details.
Removes a storage queue if found. ... |
PowerShellCorpus/PowerShellGallery/DuctusDigitalWorkspace/1.0.1/Storage/GetQueueMessage.ps1 | GetQueueMessage.ps1 | function Get-DdwQueueMessage() {
<#
.SYNOPSIS
Dequeues or gets a message onto a storage queue.
.DESCRIPTION
This function depends on the AuthCtx to be configured
with the azure environment in order to work. Check
the New-DdwAuthContext for more details.
If needs to be protecte... |
PowerShellCorpus/PowerShellGallery/DuctusDigitalWorkspace/1.0.1/Storage/GetBlob.ps1 | GetBlob.ps1 | function Get-DdwBlob() {
<#
.SYNOPSIS
Gets a blob from a blob container.
.DESCRIPTION
It uses pre-defined arguments for selecting which container
to read from and how the file is matched.
.EXAMPLE
Get-DdwBlob -AuthCtx $ctx -ConfigStore -BlobName blacklist.json | ConvertFrom-Json
... |
PowerShellCorpus/PowerShellGallery/DuctusDigitalWorkspace/1.0.1/Storage/NewQueue.ps1 | NewQueue.ps1 | function New-DdwQueue() {
<#
.SYNOPSIS
Ensures there's a queue.
.DESCRIPTION
This function depends on the AuthCtx to be configured
with the azure environment in order to work. Check
the New-DdwAuthContext for more details.
If the queue is already created it will be returned
... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/PSCI.globalObjects.ps1 | PSCI.globalObjects.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/utils/Get-PathToExternalLib.ps1 | Get-PathToExternalLib.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/utils/Compare-ConnectionParameters.ps1 | Compare-ConnectionParameters.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/utils/Get-FlatFileList.ps1 | Get-FlatFileList.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/utils/Expand-ZipShell.ps1 | Expand-ZipShell.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/utils/Import-SQLPSXSSIS.ps1 | Import-SQLPSXSSIS.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/utils/Copy-PSCI.ps1 | Copy-PSCI.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/utils/Add-QuotesToPaths.ps1 | Add-QuotesToPaths.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/utils/Test-ComputerNameIsLocalhost.ps1 | Test-ComputerNameIsLocalhost.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/utils/Copy-DeploymentScripts.ps1 | Copy-DeploymentScripts.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/utils/ConvertTo-Integer.ps1 | ConvertTo-Integer.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/utils/Get-AllBytes.ps1 | Get-AllBytes.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/utils/Convert-FunctionToScriptBlock.ps1 | Convert-FunctionToScriptBlock.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/utils/Get-PSCIModulePath.ps1 | Get-PSCIModulePath.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/utils/Get-HashForFiles.ps1 | Get-HashForFiles.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/utils/Test-Port.ps1 | Test-Port.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/utils/Import-ExternalLib.ps1 | Import-ExternalLib.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/utils/Get-PathTo7Zip.ps1 | Get-PathTo7Zip.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/utils/Set-PackageDeployScriptParameters.ps1 | Set-PackageDeployScriptParameters.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/utils/Convert-StringToTeamCityEscapedString.ps1 | Convert-StringToTeamCityEscapedString.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/build/Set-SSASVersion.ps1 | Set-SSASVersion.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/build/Set-SSDTVersion.ps1 | Set-SSDTVersion.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/build/Set-ReportVersion.ps1 | Set-ReportVersion.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/build/Stop-JsCoverServer.ps1 | Stop-JsCoverServer.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/build/Get-VisualStudioCommandPromptPath.ps1 | Get-VisualStudioCommandPromptPath.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/build/Build-Cube.ps1 | Build-Cube.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/build/Build-MsBuild.ps1 | Build-MsBuild.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/build/Start-JsCoverServer.ps1 | Start-JsCoverServer.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/build/Set-SSISVersion.ps1 | Set-SSISVersion.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/build/Get-MsBuildPath.ps1 | Get-MsBuildPath.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/SSRS/Set-SSRSItemReferences.ps1 | Set-SSRSItemReferences.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/SSRS/New-SSRSCatalogItem.ps1 | New-SSRSCatalogItem.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/SSRS/Set-SSRSProjectConfiguration.ps1 | Set-SSRSProjectConfiguration.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/SSRS/Set-SSRSItemDataSources.ps1 | Set-SSRSItemDataSources.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/SSRS/New-XmlNamespaceManager.ps1 | New-XmlNamespaceManager.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/SSRS/Set-SSRSDataSource.ps1 | Set-SSRSDataSource.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/SSRS/Format-SSRSFolder.ps1 | Format-SSRSFolder.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/SSDT/Import-SqlServerDacDll.ps1 | Import-SqlServerDacDll.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Tokens/Update-TokensInStream.ps1 | Update-TokensInStream.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Tokens/Open-ZipArchive.ps1 | Open-ZipArchive.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Tokens/Convert-XmlUsingXdtInArchive.ps1 | Convert-XmlUsingXdtInArchive.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/DscHelpers/Start-DscConfigurationWithRetries.ps1 | Start-DscConfigurationWithRetries.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/DscHelpers/Enable-FreshCredNtlmOnlyDelegation.ps1 | Enable-FreshCredNtlmOnlyDelegation.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/SSAS/Update-SSASXmlaRoleMembers.ps1 | Update-SSASXmlaRoleMembers.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/SSAS/New-SSASDeploymentTargetsFile.ps1 | New-SSASDeploymentTargetsFile.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/SSAS/New-SSASConfigSettingsFile.ps1 | New-SSASConfigSettingsFile.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/SSAS/Update-SSASXmlaProcessType.ps1 | Update-SSASXmlaProcessType.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/SSAS/Get-SSASDeploymentCMDPath.ps1 | Get-SSASDeploymentCMDPath.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Update-ConfigFile/Get-UpdateXsltCmdParams.ps1 | Get-UpdateXsltCmdParams.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Update-ConfigFile/Copy-CarbonFilesToRemoteServer.ps1 | Copy-CarbonFilesToRemoteServer.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Update-ConfigFile/Get-UpdateKeyValueCmdParams.ps1 | Get-UpdateKeyValueCmdParams.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Update-ConfigFile/Get-UpdateXmlUsingXPathParams.ps1 | Get-UpdateXmlUsingXPathParams.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Update-ConfigFile/Get-KeyValueMatches.ps1 | Get-KeyValueMatches.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Update-ConfigFile/Get-UpdateXmlAppKeyCmdParams.ps1 | Get-UpdateXmlAppKeyCmdParams.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Update-ConfigFile/Get-UpdateRegexCmdParams.ps1 | Get-UpdateRegexCmdParams.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Update-ConfigFile/Get-UpdateXdtCmdParams.ps1 | Get-UpdateXdtCmdParams.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Configuration/Get-CommandParametersAst.ps1 | Get-CommandParametersAst.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Configuration/Resolve-BasedOnHierarchy.ps1 | Resolve-BasedOnHierarchy.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Configuration/Invoke-DeploymentStep.ps1 | Invoke-DeploymentStep.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Configuration/Resolve-TokensSinglePass.ps1 | Resolve-TokensSinglePass.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Configuration/Start-DeploymentPlanEntryLocally.ps1 | Start-DeploymentPlanEntryLocally.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Configuration/Start-DeploymentPlanEntryRemotely.ps1 | Start-DeploymentPlanEntryRemotely.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Configuration/Resolve-ServerConnections.ps1 | Resolve-ServerConnections.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Configuration/Resolve-ServerConnectionsConfigElements.ps1 | Resolve-ServerConnectionsConfigElements.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Configuration/Get-IncludePackageList.ps1 | Get-IncludePackageList.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Configuration/Build-TemporaryPackage.ps1 | Build-TemporaryPackage.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Configuration/Group-DeploymentPlan.ps1 | Group-DeploymentPlan.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Configuration/Resolve-ScriptedToken.ps1 | Resolve-ScriptedToken.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Configuration/Resolve-ServerRoles.ps1 | Resolve-ServerRoles.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Configuration/Resolve-ServerConnectionConfigElement.ps1 | Resolve-ServerConnectionConfigElement.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Configuration/Resolve-StepScriptBlock.ps1 | Resolve-StepScriptBlock.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Configuration/Resolve-Token.ps1 | Resolve-Token.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Configuration/New-DeploymentPlanEntry.ps1 | New-DeploymentPlanEntry.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Configuration/Start-DeploymentByPSRemoting.ps1 | Start-DeploymentByPSRemoting.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
PowerShellCorpus/PowerShellGallery/PSCI/1.1.7/Private/deploy/Configuration/New-DeploymentPlan.ps1 | New-DeploymentPlan.ps1 | <#
The MIT License (MIT)
Copyright (c) 2015 Objectivity Bespoke Software Specialists
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the r... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.