├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── issue_template.md └── workflows │ └── stale.yml ├── .gitignore ├── Modules ├── CompareItemsBetweenInstances.ps1 ├── Copy-RainbowContent.ps1 ├── DownloadFiles.ps1 ├── Example-PowerShellRunspaces.ps1 ├── Example-PowerShellRunspacesRemoting.ps1 ├── Example-UploadMedia.ps1 ├── InvokeWebService.ps1 ├── Remoting Tests - Basic Token.ps1 ├── Remoting Tests - Bearer Token.ps1 ├── Remoting Tests - Download with RemoteScriptCall.Tests.ps1 ├── Remoting Tests - Maintenance.Tests.ps1 ├── Remoting Tests - Multiple Script Sessions.Tests.ps1 ├── Remoting Tests - RemotingAutomation.Tests.ps1 ├── Remoting Tests - Sync Content.Tests.ps1 ├── Remoting Tests - Upload with RemoteScriptCall.Tests.ps1 ├── Remoting Tests - Web Api.Tests.ps1 ├── SIF │ ├── Package-WDP.ps1 │ ├── SPE-Developer.ps1 │ └── install-module.json ├── SPE │ ├── .vscode │ │ └── launch.json │ ├── ConvertFrom-CliXml.ps1 │ ├── ConvertTo-CliXml.ps1 │ ├── FormatData │ │ └── Sitecore.Views.ps1xml │ ├── Invoke-GenericMethod.ps1 │ ├── Invoke-RemoteScript.ps1 │ ├── Libraries │ │ └── readme.txt │ ├── MediaSyncWatcher.ps1 │ ├── New-Jwt.ps1 │ ├── New-RunspacedDelegate.ps1 │ ├── New-ScriptSession.ps1 │ ├── Receive-RemoteItem.ps1 │ ├── SPE.psd1 │ ├── SPE.psm1 │ ├── Send-RemoteItem.ps1 │ ├── Stop-ScriptSession.ps1 │ ├── Test-RemoteConnection.ps1 │ ├── Test.ps1 │ ├── TypeData │ │ └── Sitecore.Types.ps1xml │ ├── Wait-RemoteScriptSession.ps1 │ └── Wait-RemoteSitecoreJob.ps1 ├── ScratchPad.ps1 ├── ScratchPad4.ps1 ├── ScratchPad5.ps1 ├── Setup-Module.ps1 ├── TestRunner.ps1 ├── spe-jwt-demo │ ├── demo.js │ ├── package-lock.json │ ├── package.json │ └── tokener.js ├── spe-test │ ├── Kittens.zip │ ├── data.xml │ ├── kitten-replacement.jpg │ └── kitten.jpg └── z.SPE.Security.Disabler.config ├── NuGet.config ├── README.md ├── Spe.sln ├── cli ├── .config │ └── dotnet-tools.json ├── .gitignore ├── .sitecore │ └── schemas │ │ ├── ModuleFile.schema.json │ │ ├── RootConfigurationFile.schema.json │ │ └── UserConfiguration.schema.json ├── .vscode │ └── settings.json ├── README.md ├── generate.bat ├── modules │ ├── Spe.Core.module.json │ ├── Spe.Rules.module.json │ ├── Spe.Scripts.module.json │ └── Spe.UI.module.json └── sitecore.json ├── docker-compose.override.yml ├── docker-compose.yml ├── docker ├── .env ├── .gitignore ├── build │ └── cm │ │ └── Dockerfile ├── data │ ├── mssql │ │ └── .gitkeep │ └── solr │ │ └── .gitkeep ├── deploy │ └── .gitkeep ├── tools │ ├── bin │ │ └── Microsoft.Web.XmlTransform.dll │ ├── dev-patches │ │ ├── CustomErrorsOff │ │ │ └── Web.config.xdt │ │ ├── DebugOn │ │ │ └── Web.config.xdt │ │ ├── DevEnvOn │ │ │ └── Web.config.xdt │ │ ├── DeviceDetectionOff │ │ │ └── App_Config │ │ │ │ └── Environment │ │ │ │ └── DeviceDetectionOff.config │ │ ├── DiagnosticsOff │ │ │ └── App_Config │ │ │ │ └── Environment │ │ │ │ └── DiagnosticsOff.config │ │ ├── HttpErrorsDetailed │ │ │ └── Web.config.xdt │ │ ├── InitMessagesOff │ │ │ └── App_Config │ │ │ │ └── Environment │ │ │ │ └── InitMessagesOff.config │ │ ├── OptimizeCompilationsOn │ │ │ └── Web.config.xdt │ │ ├── RobotDetectionOff │ │ │ └── App_Config │ │ │ │ └── Environment │ │ │ │ └── RobotDetectionOff.config │ │ └── XdbOff │ │ │ └── App_Config │ │ │ └── Environment │ │ │ └── XdbOff.config │ ├── entrypoints │ │ └── iis │ │ │ └── Development.ps1 │ └── scripts │ │ ├── Deploy-TdsWdpPackages.ps1 │ │ ├── Get-PatchFolders.ps1 │ │ ├── Install-ConfigurationFolder.ps1 │ │ ├── Invoke-XdtTransform.ps1 │ │ └── Watch-Directory.ps1 └── traefik │ ├── .gitkeep │ ├── certs │ └── .gitkeep │ └── config │ └── dynamic │ └── certs_config.yaml ├── docs ├── Release process.md ├── readme-console-ise.png └── readme-ise.gif ├── goodluck.ps1 ├── init.ps1 ├── license.md ├── releases ├── .gitkeep ├── configs │ └── Test.EnableLanguageFallback.config └── configuration.json ├── src ├── Deploy_Functions.ps1 ├── Libraries │ ├── PowerShell.MamlGenerator.dll │ └── PowerShell.MamlGenerator.pdb ├── NuGet.config ├── Post_Build.ps1 ├── Spe.Abstractions │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Spe.Abstractions.csproj │ ├── VersionDecoupling │ │ └── Interfaces │ │ │ ├── IAuthenticationManager.cs │ │ │ ├── IDateConverter.cs │ │ │ ├── IImmediateDebugWindowLauncher.cs │ │ │ ├── IIndexManager.cs │ │ │ ├── IJob.cs │ │ │ ├── IJobManager.cs │ │ │ ├── IJobMessageManager.cs │ │ │ ├── IJobOptions.cs │ │ │ ├── IObsoletor.cs │ │ │ ├── IPublishManager.cs │ │ │ ├── ISessionElevationWindowLauncher.cs │ │ │ ├── ISpeAuthenticationProvider.cs │ │ │ └── IUrlHandleWrapper.cs │ └── packages.config ├── Spe.Package │ ├── Install │ │ └── PackagePostStep.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Spe.Package.csproj │ └── packages.config ├── Spe.Sitecore8 │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Services │ │ ├── SpeAuthenticationManager.cs │ │ ├── SpeIndexManager.cs │ │ ├── SpeJob.cs │ │ ├── SpeJobManager.cs │ │ ├── SpeJobMessageManager.cs │ │ ├── SpeJobOptions.cs │ │ ├── SpeObsoletor.cs │ │ └── SpePublishManager.cs │ ├── Spe.Sitecore8.csproj │ └── packages.config ├── Spe.Sitecore92 │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Services │ │ ├── SpeAuthenticationManager.cs │ │ ├── SpeIndexManager.cs │ │ ├── SpeJob.cs │ │ ├── SpeJobManager.cs │ │ ├── SpeJobMessageManager.cs │ │ ├── SpeJobOptions.cs │ │ ├── SpeObsoletor.cs │ │ └── SpePublishManager.cs │ ├── Spe.Sitecore92.csproj │ └── packages.config ├── Spe │ ├── App_Config │ │ └── Include │ │ │ ├── Rainbow.config │ │ │ ├── Spe │ │ │ ├── Spe.Events.config.disabled │ │ │ ├── Spe.IdentityServer.config │ │ │ ├── Spe.Minimal.config.disabled │ │ │ ├── Spe.Serialization.config │ │ │ └── Spe.config │ │ │ ├── Unicorn │ │ │ ├── Unicorn.AutoPublish.config │ │ │ ├── Unicorn.Configs.Default.Roles.config.example │ │ │ ├── Unicorn.Configs.Default.Users.config.example │ │ │ ├── Unicorn.Configs.Default.example │ │ │ ├── Unicorn.Configs.Dependency.config.example │ │ │ ├── Unicorn.Configs.NewItemsOnly.example │ │ │ ├── Unicorn.CustomSerializationFolder.config.example │ │ │ ├── Unicorn.DataProvider.10.1.config.disabled │ │ │ ├── Unicorn.DataProvider.config │ │ │ ├── Unicorn.Dilithium.config.example │ │ │ ├── Unicorn.PowerShell.config │ │ │ ├── Unicorn.Remote.config.disabled │ │ │ ├── Unicorn.Roles.DataProvider.config │ │ │ ├── Unicorn.Roles.config │ │ │ ├── Unicorn.UI.DeployedContentEditorWarnings.config.disabled │ │ │ ├── Unicorn.UI.IdentityServer.config.disabled │ │ │ ├── Unicorn.UI.config │ │ │ ├── Unicorn.Users.DataProvider.config │ │ │ ├── Unicorn.Users.config │ │ │ ├── Unicorn.config │ │ │ └── Unicorn.zSharedSecret.config.example │ │ │ └── z.Spe │ │ │ └── z.Spe.config │ ├── Client │ │ ├── Applications │ │ │ ├── Administration │ │ │ │ ├── AdminPage.cs │ │ │ │ ├── NonSecurePage.cs │ │ │ │ └── PowerShell.aspx.cs │ │ │ ├── ConfirmChoice.cs │ │ │ ├── DownloadFile.cs │ │ │ ├── ExecutionMessages.cs │ │ │ ├── FieldEditor.cs │ │ │ ├── GetStringResponse.cs │ │ │ ├── IPowerShellRunner.cs │ │ │ ├── ImmediateDebugWindowLauncher.cs │ │ │ ├── PowerShellConsole.cs │ │ │ ├── PowerShellExternalView.cs │ │ │ ├── PowerShellIse.cs │ │ │ ├── PowerShellMultiValuePrompt.cs │ │ │ ├── PowerShellReports.cs │ │ │ ├── PowerShellResultViewerList.cs │ │ │ ├── PowerShellResultViewerText.cs │ │ │ ├── PowerShellRunner.cs │ │ │ ├── PowerShellScriptBrowser.cs │ │ │ ├── PowerShellSessionElevation.cs │ │ │ ├── RunnerOutput.cs │ │ │ ├── ScriptRunner.cs │ │ │ ├── SessionElevationWindowLauncher.cs │ │ │ └── UploadFile │ │ │ │ ├── PowerShellUploadFileForm.cs │ │ │ │ ├── PowerShellUploadFilePage.cs │ │ │ │ ├── PowerShellUploadFilePage2.cs │ │ │ │ └── Validation │ │ │ │ ├── ContentTypeValidator.cs │ │ │ │ ├── FileTypeValidator.cs │ │ │ │ ├── UploadLocationValidator.cs │ │ │ │ └── ValidationResult.cs │ │ ├── Commands │ │ │ ├── AbortQueryState.cs │ │ │ ├── DebugQueryState.cs │ │ │ ├── EditIseSettings.cs │ │ │ ├── EditIseSettingsCombo.cs │ │ │ ├── ExecuteFieldEditor.cs │ │ │ ├── GalleryRuntimeQueryState.cs │ │ │ ├── ItemDefinedQueryState.cs │ │ │ ├── ListViewFilterQueryState.cs │ │ │ ├── ListViewPagingQueryState.cs │ │ │ ├── MenuItems │ │ │ │ ├── AddMaster.cs │ │ │ │ ├── EditPowerShellScript.cs │ │ │ │ ├── ExecutePowerShellConsole.cs │ │ │ │ ├── ExecutePowerShellScript.cs │ │ │ │ ├── ItemNew.cs │ │ │ │ ├── ScriptLibraryMenuItem.cs │ │ │ │ └── ShowExternalPage.cs │ │ │ ├── RuntimeQueryState.cs │ │ │ ├── SelectUser.cs │ │ │ ├── Selectlanguage.cs │ │ │ └── WebEditScriptCommand.cs │ │ └── Controls │ │ │ ├── BucketlistExtended.cs │ │ │ ├── CompleteMessage.cs │ │ │ ├── ContentEditorRibbonPanel.cs │ │ │ ├── ContextGallery.cs │ │ │ ├── EditExtended.cs │ │ │ ├── IseContextPanel.cs │ │ │ ├── IseContextPanelBase.cs │ │ │ ├── IseContextPanelEx.cs │ │ │ ├── IsePluginPanel.cs │ │ │ ├── IsePluginStrip.cs │ │ │ ├── LanguageGallery.cs │ │ │ ├── LanguageHistory.cs │ │ │ ├── ListViewComparer.cs │ │ │ ├── Marquee.cs │ │ │ ├── MruGallery.cs │ │ │ ├── MultilistExtended.cs │ │ │ ├── PSCheckList.cs │ │ │ ├── PasswordExtended.cs │ │ │ ├── PowerShellListView.cs │ │ │ ├── RibbonActionScriptsPanel.cs │ │ │ ├── RibbonExportScriptsPanel.cs │ │ │ ├── SessionCompleteEventArgs.cs │ │ │ ├── SessionIDGallery.cs │ │ │ ├── SpeJobMonitor.cs │ │ │ ├── TreelistExtended.cs │ │ │ ├── UserGallery.cs │ │ │ └── UserPicker.cs │ ├── Commands │ │ ├── BaseCommand.cs │ │ ├── BaseIndexCommand.cs │ │ ├── BaseItemCommand.cs │ │ ├── BaseItemRecursiveCommand.cs │ │ ├── BaseLanguageAgnosticItemCommand.cs │ │ ├── Data │ │ │ ├── AddBaseTemplateCommand.cs │ │ │ ├── AddItemVersionCommand.cs │ │ │ ├── BaseTemplateItemCommand.cs │ │ │ ├── Clones │ │ │ │ ├── BaseItemCloneNotificationCommand.cs │ │ │ │ ├── ConvertFromItemCloneCommand.cs │ │ │ │ ├── GetItemCloneCommand.cs │ │ │ │ ├── GetItemCloneNotificationCommand.cs │ │ │ │ ├── NewItemCloneCommand.cs │ │ │ │ ├── NotificationAction.cs │ │ │ │ ├── NotificationType.cs │ │ │ │ └── ReceiveItemCloneNotificationCommand.cs │ │ │ ├── DatabaseContextBaseCommand.cs │ │ │ ├── ExpandTokensCommand.cs │ │ │ ├── GetArchiveCommand.cs │ │ │ ├── GetArchiveItemCommand.cs │ │ │ ├── GetDatabaseCommand.cs │ │ │ ├── GetItemFieldCommand.cs │ │ │ ├── GetItemReferenceCommand.cs │ │ │ ├── GetItemReferrerCommand.cs │ │ │ ├── GetItemTemplateCommand.cs │ │ │ ├── InitializeItemCommand.cs │ │ │ ├── NewUsingBlockCommand.cs │ │ │ ├── PublishItemCommand.cs │ │ │ ├── RemoveArchiveItemCommand.cs │ │ │ ├── RemoveBaseTemplateCommand.cs │ │ │ ├── RemoveItemVersionCommand.cs │ │ │ ├── ResetItemFieldCommand.cs │ │ │ ├── RestoreArchiveItemCommand.cs │ │ │ ├── Search │ │ │ │ ├── BaseIndexItemCommand.cs │ │ │ │ ├── BaseSearchCommand.cs │ │ │ │ ├── FilterType.cs │ │ │ │ ├── FindItemCommand.cs │ │ │ │ ├── GetSearchIndexCommand.cs │ │ │ │ ├── InitializeSearchIndexCommand.cs │ │ │ │ ├── InitializeSearchIndexItemCommand.cs │ │ │ │ ├── NewSearchPredicateCommand.cs │ │ │ │ ├── RemoveSearchIndexItemCommand.cs │ │ │ │ ├── ResumeSearchIndexCommand.cs │ │ │ │ ├── SearchCriteria.cs │ │ │ │ ├── SearchOperation.cs │ │ │ │ ├── StopSearchIndexCommand.cs │ │ │ │ ├── SuspendSearchIndexCommand.cs │ │ │ │ └── UpdateSearchIndexItemCommand.cs │ │ │ ├── SetItemTemplateCommand.cs │ │ │ ├── TestBaseTemplateCommand.cs │ │ │ ├── TestRuleCommand.cs │ │ │ └── UpdateItemReferrerCommand.cs │ │ ├── Diagnostics │ │ │ └── WriteLogCommand.cs │ │ ├── ErrorIds.cs │ │ ├── Interactive │ │ │ ├── BaseFormCommand.cs │ │ │ ├── BaseListViewCommand.cs │ │ │ ├── BaseShellCommand.cs │ │ │ ├── CloseWindowCommand.cs │ │ │ ├── InvokeJavaScriptCommand.cs │ │ │ ├── InvokeShellCommandCommand.cs │ │ │ ├── Messages │ │ │ │ ├── BasePipelineMessageWithResult.cs │ │ │ │ ├── CloseWindowMessage.cs │ │ │ │ ├── DownloadMessage.cs │ │ │ │ ├── IMessageWithResult.cs │ │ │ │ ├── InvokeJavaScriptMessage.cs │ │ │ │ ├── OutDownloadMessage.cs │ │ │ │ ├── PromptMessage.cs │ │ │ │ ├── ShellCommandInItemContextMessage.cs │ │ │ │ ├── ShowApplicationMessage.cs │ │ │ │ ├── ShowListViewMessage.cs │ │ │ │ ├── ShowModalDialogPsMessage.cs │ │ │ │ ├── ShowMultiValuePromptMessage.cs │ │ │ │ ├── ShowResultsMessage.cs │ │ │ │ ├── ShowSuspendDialogMessage.cs │ │ │ │ └── ShowUploadFileMessage.cs │ │ │ ├── OutDownloadCommand.cs │ │ │ ├── ReadVariableCommand.cs │ │ │ ├── ReceiveFileCommand.cs │ │ │ ├── SendFileCommand.cs │ │ │ ├── SendSheerMessageCommand.cs │ │ │ ├── ShowAlertCommand.cs │ │ │ ├── ShowApplicationCommand.cs │ │ │ ├── ShowConfirmCommand.cs │ │ │ ├── ShowFieldEditorCommand.cs │ │ │ ├── ShowInputCommand.cs │ │ │ ├── ShowListViewCommand.cs │ │ │ ├── ShowListViewFeatures.cs │ │ │ ├── ShowModalDialogCommand.cs │ │ │ ├── ShowResultsCommand.cs │ │ │ ├── ShowYesNoCancelCommand.cs │ │ │ └── UpdateListViewCommand.cs │ │ ├── Jobs │ │ │ └── GetSitecoreJobCommand.cs │ │ ├── Modules │ │ │ ├── GetSpeModule.cs │ │ │ └── GetSpeModuleFeatureRoot.cs │ │ ├── Packages │ │ │ ├── BasePackageCommand.cs │ │ │ ├── ExportPackageCommand.cs │ │ │ ├── GetPackageCommand.cs │ │ │ ├── GetPackageItemCommand.cs │ │ │ ├── InstallPackageCommand.cs │ │ │ ├── NewExplicitFileSourceCommand.cs │ │ │ ├── NewExplicitItemSourceCommand.cs │ │ │ ├── NewFileSourceCommand.cs │ │ │ ├── NewItemSourceCommand.cs │ │ │ ├── NewPackageCommand.cs │ │ │ └── NewSecuritySourceCommand.cs │ │ ├── Presentation │ │ │ ├── AddPlaceholderSettingCommand.cs │ │ │ ├── AddRenderingCommand.cs │ │ │ ├── BaseLayoutCommand.cs │ │ │ ├── BaseLayoutPerDeviceCommand.cs │ │ │ ├── BasePlaceholderSettingCommand.cs │ │ │ ├── BaseRenderingCommand.cs │ │ │ ├── BaseRenderingParameterCommand.cs │ │ │ ├── GetLayoutCommand.cs │ │ │ ├── GetLayoutDeviceCommand.cs │ │ │ ├── GetPlaceholderSettingCommand.cs │ │ │ ├── GetRenderingCommand.cs │ │ │ ├── GetRenderingParameterCommand.cs │ │ │ ├── MergeLayoutCommand.cs │ │ │ ├── NewPlaceHolderSettingCommand.cs │ │ │ ├── NewRenderingCommand.cs │ │ │ ├── RemoveLayoutCommand.cs │ │ │ ├── RemovePlaceholderSettingCommand.cs │ │ │ ├── RemoveRenderingCommand.cs │ │ │ ├── RemoveRenderingParameterCommand.cs │ │ │ ├── ResetLayoutCommand.cs │ │ │ ├── SetLayoutCommand.cs │ │ │ ├── SetRenderingCommand.cs │ │ │ ├── SetRenderingParameterCommand.cs │ │ │ └── SwitchRenderingCommand.cs │ │ ├── Remoting │ │ │ ├── ConvertFromCliXmlCommand.cs │ │ │ └── ConvertToCliXmlCommand.cs │ │ ├── Scheduler │ │ │ ├── GetTaskScheduleCommand.cs │ │ │ └── StartTaskScheduleCommand.cs │ │ ├── ScriptSessions │ │ │ ├── BaseScriptSessionCommand.cs │ │ │ ├── GetScriptSessionCommand.cs │ │ │ ├── ReceiveScriptSessionCommand.cs │ │ │ ├── RemoveScriptSessionCommand.cs │ │ │ ├── StartScriptSessionCommand.cs │ │ │ ├── StopScriptSessionCommand.cs │ │ │ └── WaitScriptSessionCommand.cs │ │ ├── Security │ │ │ ├── AccountIdentity.cs │ │ │ ├── Accounts │ │ │ │ ├── AddRoleMemberCommand.cs │ │ │ │ ├── BaseSecurityCommand.cs │ │ │ │ ├── DisableUserCommand.cs │ │ │ │ ├── EnableUserCommand.cs │ │ │ │ ├── GetDomainCommand.cs │ │ │ │ ├── GetRoleCommand.cs │ │ │ │ ├── GetRoleMemberCommand.cs │ │ │ │ ├── GetUserCommand.cs │ │ │ │ ├── NewDomainCommand.cs │ │ │ │ ├── NewRoleCommand.cs │ │ │ │ ├── NewUserCommand.cs │ │ │ │ ├── RemoveDomainCommand.cs │ │ │ │ ├── RemoveRoleCommand.cs │ │ │ │ ├── RemoveRoleMemberCommand.cs │ │ │ │ ├── RemoveUserCommand.cs │ │ │ │ ├── SetUserCommand.cs │ │ │ │ ├── SetUserPasswordCommand.cs │ │ │ │ ├── TestAccountCommand.cs │ │ │ │ └── UnlockUserCommand.cs │ │ │ ├── Items │ │ │ │ ├── AddItemAclCommand.cs │ │ │ │ ├── BaseEditItemCommand.cs │ │ │ │ ├── BaseGovernanceCommand.cs │ │ │ │ ├── BaseItemAclCommand.cs │ │ │ │ ├── ClearItemAclCommand.cs │ │ │ │ ├── GetItemAclCommand.cs │ │ │ │ ├── LockItemCommand.cs │ │ │ │ ├── NewItemAclCommand.cs │ │ │ │ ├── ProtectItemCommand.cs │ │ │ │ ├── SetItemAclCommand.cs │ │ │ │ ├── TestItemAclCommand.cs │ │ │ │ ├── UnlockItemCommand.cs │ │ │ │ └── UnprotectItemCommand.cs │ │ │ └── Session │ │ │ │ ├── GetSessionCommand.cs │ │ │ │ ├── LoginUserCommand.cs │ │ │ │ ├── LogoutUserCommand.cs │ │ │ │ └── RemoveSessionCommand.cs │ │ ├── Serialization │ │ │ ├── ExportItemCommand.cs │ │ │ ├── ExportRoleCommand.cs │ │ │ ├── ExportUserCommand.cs │ │ │ ├── GetPresetCommand.cs │ │ │ ├── ImportItemCommand.cs │ │ │ ├── ImportRoleCommand.cs │ │ │ └── ImportUserCommand.cs │ │ ├── Session │ │ │ ├── GetCacheCommand.cs │ │ │ ├── GetUserAgent.cs │ │ │ ├── ImportFunctionCommand.cs │ │ │ ├── InvokeScriptCommand.cs │ │ │ ├── RestartApplicationCommand.cs │ │ │ └── SetHostPropertyCommand.cs │ │ ├── UpdatePackages │ │ │ ├── ExportUpdatePackageCommand.cs │ │ │ ├── GetUpdatePackageDiffCommandsCommand.cs │ │ │ ├── InstallUpdatePackageCommand.cs │ │ │ └── NewUpdatePackageCommandCommand.cs │ │ └── Workflows │ │ │ ├── GetItemWorkflowEventCommand.cs │ │ │ ├── InvokeWorkflowCommand.cs │ │ │ └── NewItemWorkflowEventCommand.cs │ ├── Core │ │ ├── Data │ │ │ └── DisablePropertyExpander.cs │ │ ├── Debugging │ │ │ ├── Utility │ │ │ │ └── Validate.cs │ │ │ ├── VariableContainerDetails.cs │ │ │ ├── VariableDetails.cs │ │ │ └── VariableDetailsBase.cs │ │ ├── Diagnostics │ │ │ └── PowerShellLog.cs │ │ ├── Extensions │ │ │ ├── CmdletExtensions.cs │ │ │ ├── CustomFieldAccessor.cs │ │ │ ├── EnumerableExtensions.cs │ │ │ ├── ExpressionExtensions.cs │ │ │ ├── FieldExtensions.cs │ │ │ ├── ItemEqualityComparer.cs │ │ │ ├── ItemExtensions.cs │ │ │ ├── ItemShellExtensions.cs │ │ │ ├── LanguageExtensions.cs │ │ │ ├── MessageExtensions.cs │ │ │ ├── NameValueCollectionExtensions.cs │ │ │ ├── PSItemProperty.cs │ │ │ ├── PowerShellExtensions.cs │ │ │ ├── StringExtensions.cs │ │ │ └── TypeExtensions.cs │ │ ├── Host │ │ │ ├── BufferSplitterCollection.cs │ │ │ ├── CommandCompletion.cs │ │ │ ├── CommandHelp.cs │ │ │ ├── OutputBuffer.cs │ │ │ ├── OutputLine.cs │ │ │ ├── OutputLineType.cs │ │ │ ├── ScriptExecutionResult.cs │ │ │ ├── ScriptSession.cs │ │ │ ├── ScriptSessionManager.cs │ │ │ ├── ScriptingHost.cs │ │ │ ├── ScriptingHostPrivateData.cs │ │ │ ├── ScriptingHostRawUserInterface.cs │ │ │ ├── ScriptingHostUserInterface.cs │ │ │ └── SpeSitecorePowerShellSnapIn.cs │ │ ├── Modules │ │ │ ├── IntegrationPoint.cs │ │ │ ├── IntegrationPoints.cs │ │ │ ├── Module.cs │ │ │ ├── ModuleManager.cs │ │ │ └── ModuleMonitor.cs │ │ ├── Processors │ │ │ └── RewriteUrl.cs │ │ ├── Provider │ │ │ ├── ItemContentReader.cs │ │ │ ├── ItemContentReaderWriterBase.cs │ │ │ ├── ItemContentWriter.cs │ │ │ ├── PsSitecoreItemProvider.Content.cs │ │ │ ├── PsSitecoreItemProvider.DynamicParameters.cs │ │ │ ├── PsSitecoreItemProvider.Maintenance.cs │ │ │ ├── PsSitecoreItemProvider.PathHandling.cs │ │ │ ├── PsSitecoreItemProvider.PropertyProvider.cs │ │ │ ├── PsSitecoreItemProvider.cs │ │ │ ├── PsSitecoreItemProvider5.cs │ │ │ └── PsSitecoreItemProviderFactory.cs │ │ ├── Rules │ │ │ ├── HasAncestorInheritingFromTemplateCondition.cs │ │ │ ├── PowerShellDelegatedAccess.cs │ │ │ ├── PowerShellExperienceButtonChromeName.cs │ │ │ ├── PowerShellExperienceButtonChromeType.cs │ │ │ ├── PowerShellIseSelectionLength.cs │ │ │ ├── PowerShellIseSessionState.cs │ │ │ ├── PowerShellListViewNameMatch.cs │ │ │ ├── PowerShellSessionExists.cs │ │ │ ├── PowerShellSessionExistsWithVariable.cs │ │ │ ├── PowerShellUserRoleWithInheritanceCondition.cs │ │ │ ├── ScriptResultBoolValueCondition.cs │ │ │ ├── ScriptResultStringValueCondition.cs │ │ │ ├── SitecoreConfigIntSettingValueCondition.cs │ │ │ ├── SitecoreConfigSettingValueCondition.cs │ │ │ ├── WebConfigIntSettingValueCondition.cs │ │ │ └── WebConfigSettingValueCondition.cs │ │ ├── Serialization │ │ │ ├── PresetFactory.cs │ │ │ ├── PresetWorker.cs │ │ │ └── SingleEntry.cs │ │ ├── Settings │ │ │ ├── ApplicationNames.cs │ │ │ ├── ApplicationSettings.cs │ │ │ ├── Authorization │ │ │ │ ├── AuthCacheEntry.cs │ │ │ │ ├── AuthorizationEntry.cs │ │ │ │ ├── ContentEditorWarningScript.cs │ │ │ │ ├── DelegatedAccessMonitor.cs │ │ │ │ ├── DropElevatedSessionState.cs │ │ │ │ ├── ElevateSessionState.cs │ │ │ │ ├── ScriptItemSecurityEventHandler.cs │ │ │ │ ├── ServiceAuthenticationManager.cs │ │ │ │ ├── ServiceAuthorizationManager.cs │ │ │ │ ├── SessionElevationErrors.cs │ │ │ │ ├── SessionElevationManager.cs │ │ │ │ ├── SharedSecretAuthenticationProvider.cs │ │ │ │ └── WebServiceSettings.cs │ │ │ ├── DelegatedAccessManager.cs │ │ │ ├── FieldNames.cs │ │ │ ├── PredefinedVariables.cs │ │ │ ├── RenamedCommands.cs │ │ │ ├── StringTokens.cs │ │ │ └── TypeAccelerators.cs │ │ ├── Utility │ │ │ ├── AnonymousTypeUtils.cs │ │ │ ├── PathUtilities.cs │ │ │ ├── RulesUtils.cs │ │ │ ├── SpeTimer.cs │ │ │ ├── StreamUtils.cs │ │ │ ├── TemplateUtils.cs │ │ │ ├── WildcardUtils.cs │ │ │ └── ZipUtils.cs │ │ ├── Validation │ │ │ ├── AutocompleteSetAttribute.cs │ │ │ └── MiscAutocompleteSets.cs │ │ └── VersionDecoupling │ │ │ ├── CurrentVersion.cs │ │ │ ├── SitecoreVersion.cs │ │ │ └── TypeResolver.cs │ ├── Integrations │ │ ├── Gutters │ │ │ └── GutterStatusRenderer.cs │ │ ├── Install │ │ │ ├── AttributesContainer.cs │ │ │ └── ScriptPostStep.cs │ │ ├── Pipelines │ │ │ ├── AssemblyResolver.cs │ │ │ ├── ContentEditorWarningScript.cs │ │ │ ├── GetItemMasters.cs │ │ │ ├── LoggedInScript.cs │ │ │ ├── LoggingInScript.cs │ │ │ ├── LogoutScript.cs │ │ │ ├── PageEditorExperienceButtonScript.cs │ │ │ ├── PageEditorNotificationScript.cs │ │ │ └── PipelineProcessor.cs │ │ ├── Processors │ │ │ ├── BaseScriptedDataSource.cs │ │ │ ├── ScriptedDataSource.cs │ │ │ ├── ScriptedRenderRendering.cs │ │ │ ├── ScriptedRenderingDataSourceResolve.cs │ │ │ ├── ScriptedRenderingDataSourceRoots.cs │ │ │ └── SkipPowerShellScriptItems.cs │ │ ├── Tasks │ │ │ ├── ExecuteScriptTask.cs │ │ │ └── ScriptedItemEventHandler.cs │ │ └── Workflows │ │ │ └── ScriptAction.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── CustomDictionary.xml │ │ └── GlobalSuppressions.cs │ ├── Spe.csproj │ ├── Templates.cs │ ├── Texts.cs │ ├── Utility │ │ ├── DateConverter.cs │ │ └── UrlHandleWrapper.cs │ ├── Version.cs │ ├── packages.config │ ├── sitecore modules │ │ ├── PowerShell │ │ │ ├── Assets │ │ │ │ ├── Sitecore.Types.ps1xml │ │ │ │ ├── Sitecore.Views.ps1xml │ │ │ │ ├── Spe.dll-help.maml │ │ │ │ ├── Splitter.png │ │ │ │ ├── TabClose.png │ │ │ │ ├── spe-32.png │ │ │ │ ├── version.html │ │ │ │ └── working.gif │ │ │ ├── Scripts │ │ │ │ ├── PsHSplitter.js │ │ │ │ ├── Runner.js │ │ │ │ ├── SpeShared.js │ │ │ │ ├── VariablePrompt.js │ │ │ │ ├── ace │ │ │ │ │ ├── ace.js │ │ │ │ │ ├── emmet-core │ │ │ │ │ │ └── emmet.js │ │ │ │ │ ├── ext-beautify.js │ │ │ │ │ ├── ext-chromevox.js │ │ │ │ │ ├── ext-elastic_tabstops_lite.js │ │ │ │ │ ├── ext-emmet.js │ │ │ │ │ ├── ext-error_marker.js │ │ │ │ │ ├── ext-keybinding_menu.js │ │ │ │ │ ├── ext-language_tools.js │ │ │ │ │ ├── ext-linking.js │ │ │ │ │ ├── ext-modelist.js │ │ │ │ │ ├── ext-old_ie.js │ │ │ │ │ ├── ext-searchbox.js │ │ │ │ │ ├── ext-settings_menu.js │ │ │ │ │ ├── ext-spellcheck.js │ │ │ │ │ ├── ext-split.js │ │ │ │ │ ├── ext-static_highlight.js │ │ │ │ │ ├── ext-statusbar.js │ │ │ │ │ ├── ext-textarea.js │ │ │ │ │ ├── ext-themelist.js │ │ │ │ │ ├── ext-whitespace.js │ │ │ │ │ ├── mode-powershell.js │ │ │ │ │ ├── snippets-powershell.js │ │ │ │ │ ├── snippets │ │ │ │ │ │ ├── powershell.js │ │ │ │ │ │ └── text.js │ │ │ │ │ └── theme-powershellise.js │ │ │ │ ├── autocomplete_menu.js │ │ │ │ ├── c3.min.js │ │ │ │ ├── clipboard.min.js │ │ │ │ ├── console.js │ │ │ │ ├── d3.min.js │ │ │ │ ├── flexie.min.js │ │ │ │ ├── ise.js │ │ │ │ ├── jquery-ui.min.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── jquery.mousewheel-min.js │ │ │ │ ├── jquery.qtip.js │ │ │ │ ├── jquery.qtip.min.js │ │ │ │ ├── jquery.terminal.js │ │ │ │ ├── listview.js │ │ │ │ ├── purl.js │ │ │ │ ├── reports.js │ │ │ │ ├── split.js │ │ │ │ ├── token_tooltip.js │ │ │ │ ├── typed.min.js │ │ │ │ └── validation.js │ │ │ ├── Services │ │ │ │ ├── PowerShellWebService.asmx │ │ │ │ ├── PowerShellWebService.asmx.cs │ │ │ │ ├── RemoteAutomation.asmx │ │ │ │ ├── RemoteAutomation.asmx.cs │ │ │ │ ├── RemoteScriptCall.ashx │ │ │ │ ├── RemoteScriptCall.ashx.cs │ │ │ │ └── web.config │ │ │ ├── Styles │ │ │ │ ├── Console.css │ │ │ │ ├── Dialogs.css │ │ │ │ ├── Gallery.css │ │ │ │ ├── IFrame.css │ │ │ │ ├── ListView.css │ │ │ │ ├── Runner.css │ │ │ │ ├── VariablePrompt.css │ │ │ │ ├── c3.min.css │ │ │ │ ├── images │ │ │ │ │ ├── indeterminate.gif │ │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── ise.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ ├── jquery.qtip.min.css │ │ │ │ ├── jquery.terminal.css │ │ │ │ └── reports.css │ │ │ └── web.config │ │ ├── Shell │ │ │ └── PowerShell │ │ │ │ ├── ConfirmChoice.xml │ │ │ │ ├── ContextGallery.xml │ │ │ │ ├── DownloadFile.xml │ │ │ │ ├── GetStringResponse.xml │ │ │ │ ├── LanguageGallery.Option.xml │ │ │ │ ├── LanguageGallery.xml │ │ │ │ ├── MruGallery.SearchItem.xml │ │ │ │ ├── MruGallery.xml │ │ │ │ ├── PowerShellConsole.xml │ │ │ │ ├── PowerShellExternalView.xml │ │ │ │ ├── PowerShellIse.xml │ │ │ │ ├── PowerShellMultiValuePrompt.xml │ │ │ │ ├── PowerShellReports.xml │ │ │ │ ├── PowerShellResultViewerList.xml │ │ │ │ ├── PowerShellResultViewerText.xml │ │ │ │ ├── PowerShellRunner.xml │ │ │ │ ├── PowerShellScriptBrowser.xml │ │ │ │ ├── PowerShellSessionElevation.xml │ │ │ │ ├── PsHSplitter.xml │ │ │ │ ├── SessionIDGallery.Option.xml │ │ │ │ ├── SessionIDGallery.xml │ │ │ │ ├── UploadFile │ │ │ │ ├── PowerShellUploadFile.aspx │ │ │ │ ├── PowerShellUploadFile.xml │ │ │ │ └── PowerShellUploadFile2.aspx │ │ │ │ ├── UserGallery.Option.xml │ │ │ │ └── UserGallery.xml │ │ └── items │ │ │ ├── core │ │ │ └── items.core.spe.dat.tmp │ │ │ ├── master │ │ │ └── items.master.spe.dat.tmp │ │ │ └── web │ │ │ └── items.web.spe.dat.tmp │ └── sitecore │ │ ├── admin │ │ └── PowerShell.aspx │ │ └── shell │ │ ├── Themes │ │ └── Standard │ │ │ └── PowerShell.zip │ │ └── version │ │ └── Modules │ │ └── Sitecore PowerShell Extensions.version ├── UserConfiguration │ └── App_Config │ │ └── Include │ │ └── z.Spe │ │ ├── z.Spe.Development.User.config │ │ └── z.Spe.Development.User.config.sample ├── deploy.json ├── deploy.targets └── deploy.user.json.sample ├── translations ├── ExportTranslationCsv.ps1 ├── ImportTranslationCsv.ps1 ├── StripUntranslatedPhrases.ps1 ├── da │ ├── spe-translation-core-da.csv │ ├── spe-translation-core-da.xml │ ├── spe-translation-master-da.csv │ ├── spe-translation-master-da.xml │ ├── spe-translation-scripts-master-da.csv │ ├── spe-translation-scripts-master-da.xml │ ├── spe-translation-ui-core-da.csv │ ├── spe-translation-ui-core-da.xml │ ├── spe-translation-ui-master-da.csv │ └── spe-translation-ui-master-da.xml ├── de-de │ ├── spe-translation-authorable-reports-core-de-de.csv │ ├── spe-translation-authorable-reports-core-de-de.xml │ ├── spe-translation-authorable-reports-master-de-de.csv │ ├── spe-translation-authorable-reports-master-de-de.xml │ ├── spe-translation-core-de-de.csv │ ├── spe-translation-core-de-de.xml │ ├── spe-translation-master-de-de.csv │ ├── spe-translation-master-de-de.xml │ ├── spe-translation-scripts-master-de-de.csv │ └── spe-translation-scripts-master-de-de.xml ├── ja-jp │ ├── spe-translation-authorable-reports-core-ja-jp.xml │ ├── spe-translation-authorable-reports-master-ja-jp.xml │ ├── spe-translation-core-ja-JP.xml │ ├── spe-translation-master-ja-JP.xml │ └── spe-translation-scripts-master-ja-jp.xml └── zh-cn │ ├── spe-translation-authorable-reports-core-zh-cn.xml │ ├── spe-translation-authorable-reports-master-zh-cn.xml │ ├── spe-translation-core-zh-cn.xml │ ├── spe-translation-master-zh-cn.xml │ └── spe-translation-scripts-master-zh-cn.xml └── unicorn └── SPE ├── Core ├── Module │ ├── PowerShell.yml │ └── PowerShell │ │ ├── Console Colors.yml │ │ ├── Console Colors │ │ ├── Black.yml │ │ ├── Blue.yml │ │ ├── Cyan.yml │ │ ├── DarkBlue.yml │ │ ├── DarkCyan.yml │ │ ├── DarkGray.yml │ │ ├── DarkGreen.yml │ │ ├── DarkMagenta.yml │ │ ├── DarkRed.yml │ │ ├── DarkYellow.yml │ │ ├── Gray.yml │ │ ├── Green.yml │ │ ├── Magenta.yml │ │ ├── Red.yml │ │ ├── White.yml │ │ └── Yellow.yml │ │ ├── Delegated Access.yml │ │ ├── Fonts.yml │ │ ├── Fonts │ │ ├── Cascadia Code.yml │ │ ├── Consolas.yml │ │ ├── Courier New.yml │ │ ├── Inconsolata.yml │ │ ├── Lucida Console.yml │ │ ├── Monaco.yml │ │ ├── Source Code Pro.yml │ │ └── monospace.yml │ │ ├── Script Library.yml │ │ ├── Settings.yml │ │ ├── Settings │ │ ├── Console.yml │ │ ├── Console │ │ │ └── All Users.yml │ │ ├── Context.yml │ │ ├── Context │ │ │ └── All Users.yml │ │ ├── Default.yml │ │ ├── Default │ │ │ └── All Users.yml │ │ ├── ISE.yml │ │ ├── ISE │ │ │ └── All Users.yml │ │ ├── RemoteAutomation.yml │ │ └── RemoteAutomation │ │ │ └── All Users.yml │ │ ├── Snippets.yml │ │ └── Snippets │ │ ├── Dialogs.yml │ │ ├── Dialogs │ │ ├── Read-Variable with Date Filter.yml │ │ └── Read-Variable with Dropdown.yml │ │ ├── Functions.yml │ │ ├── Functions │ │ ├── Function - Advanced.yml │ │ └── Function - Simple.yml │ │ ├── Notifications.yml │ │ ├── Notifications │ │ ├── Content Editor Gutter.yml │ │ ├── Content Editor Warning.yml │ │ └── Experience Editor Warning.yml │ │ ├── Reporting.yml │ │ ├── Reporting │ │ └── Report using Show-ListView.yml │ │ ├── Search.yml │ │ ├── Search │ │ ├── Find-Item with Criteria.yml │ │ ├── Find-Item with Predicate.yml │ │ ├── Find-Item with Scope Query.yml │ │ └── Find-Item with Where Values.yml │ │ ├── Statements.yml │ │ └── Statements │ │ ├── If Else.yml │ │ ├── Sql Query.yml │ │ ├── Switch.yml │ │ └── Variables.yml └── Templates │ ├── Modules.yml │ └── Modules │ ├── PowerShell Authorable Reports.yml │ ├── PowerShell Authorable Reports │ ├── PowerShell Rule Library.yml │ ├── PowerShell Rule Library │ │ └── __Standard Values.yml │ ├── PowerShell Rule.yml │ └── PowerShell Rule │ │ ├── Filter.yml │ │ ├── Filter │ │ └── FilterRule.yml │ │ ├── Report.yml │ │ ├── Report │ │ └── DefaultFields.yml │ │ ├── Search.yml │ │ ├── Search │ │ ├── Query.yml │ │ └── RootItem.yml │ │ └── __Standard Values.yml │ ├── PowerShell Console.yml │ └── PowerShell Console │ ├── Font Definition.yml │ ├── Font Definition │ ├── Data.yml │ ├── Data │ │ ├── Key.yml │ │ └── Phrase.yml │ └── __Standard Values.yml │ ├── PowerShell Console Settings.yml │ ├── PowerShell Console Settings │ ├── Appearance.yml │ ├── Appearance │ │ ├── BackgroundColor.yml │ │ ├── FontFamily.yml │ │ ├── FontSize.yml │ │ ├── ForegroundColor.yml │ │ ├── HostHeight.yml │ │ └── HostWidth.yml │ ├── Behaviour.yml │ └── Behaviour │ │ ├── LastScript.yml │ │ ├── LiveAutocompletion.yml │ │ ├── PerTabOutput.yml │ │ └── SaveLastScript.yml │ ├── PowerShell Delegated Access.yml │ ├── PowerShell Delegated Access │ ├── Access Mapping.yml │ └── Access Mapping │ │ ├── ElevatedRole.yml │ │ ├── Enabled.yml │ │ ├── ImpersonatedUser.yml │ │ └── ScriptItem.yml │ ├── PowerShell Script Library.yml │ ├── PowerShell Script Library │ ├── Interactive.yml │ ├── Interactive │ │ ├── EnableRule.yml │ │ └── ShowRule.yml │ └── __Standard Values.yml │ ├── PowerShell Script Module Folde.yml │ ├── PowerShell Script Module Folde │ └── __Standard Values.yml │ ├── PowerShell Script Module.yml │ ├── PowerShell Script Module │ ├── About.yml │ ├── About │ │ ├── Description.yml │ │ ├── History.yml │ │ ├── Module Version.yml │ │ └── Whats new.yml │ ├── Copyright.yml │ ├── Copyright │ │ ├── Author.yml │ │ ├── Category.yml │ │ ├── Email.yml │ │ ├── License.yml │ │ ├── Published by.yml │ │ ├── Support.yml │ │ └── Url.yml │ ├── Module Activation.yml │ ├── Module Activation │ │ └── Enabled.yml │ └── __Standard Values.yml │ ├── PowerShell Script Workflow Act.yml │ ├── PowerShell Script Workflow Act │ ├── Data.yml │ ├── Data │ │ └── Type.yml │ ├── Interactive.yml │ ├── Interactive │ │ └── EnableRule.yml │ ├── Scripting.yml │ ├── Scripting │ │ └── Script.yml │ └── __Standard Values.yml │ ├── PowerShell Script.yml │ ├── PowerShell Script │ ├── Interactive.yml │ ├── Interactive │ │ ├── EnableRule.yml │ │ └── ShowRule.yml │ ├── Scripting.yml │ ├── Scripting │ │ └── Script.yml │ ├── Session Persistency.yml │ ├── Session Persistency │ │ └── PersistentSessionId.yml │ └── __Standard Values.yml │ ├── Snippet Definition Folder.yml │ ├── Snippet Definition Folder │ └── __Standard Values.yml │ ├── Snippet Definition.yml │ └── Snippet Definition │ ├── Scripting.yml │ ├── Scripting │ └── Script.yml │ └── __Standard Values.yml ├── Roles └── sitecore │ └── PowerShell Extensions Remoting.yml ├── Rules ├── Definition │ ├── PowerShell.yml │ └── PowerShell │ │ ├── Tags.yml │ │ └── Tags │ │ └── Default.yml ├── Experience Button Rules │ ├── PowerShell Experience Buttons.yml │ └── PowerShell Experience Buttons │ │ ├── Chrome Name.yml │ │ ├── Chrome Name │ │ ├── State.yml │ │ └── State │ │ │ ├── modified.yml │ │ │ └── saved.yml │ │ ├── Chrome Type.yml │ │ ├── Chrome Type │ │ ├── of Type.yml │ │ └── of Type │ │ │ ├── field.yml │ │ │ ├── placeholder.yml │ │ │ └── rendering.yml │ │ ├── Tags.yml │ │ ├── Tags │ │ └── Default.yml │ │ └── Visibility.yml ├── Experience Button Tags │ ├── PowerShell Experience Buttons.yml │ └── PowerShell Experience Buttons │ │ └── Visibility.yml ├── ISE Rules │ ├── PowerShell ISE.yml │ └── PowerShell ISE │ │ ├── Selection Length.yml │ │ ├── Selection Length │ │ ├── Length of.yml │ │ └── Length of │ │ │ ├── selected.yml │ │ │ └── total.yml │ │ ├── Session State.yml │ │ ├── Session State │ │ ├── State.yml │ │ └── State │ │ │ ├── modified.yml │ │ │ └── saved.yml │ │ ├── Tags.yml │ │ ├── Tags │ │ └── Default.yml │ │ └── Visibility.yml ├── ISE Tags │ ├── PowerShell ISE.yml │ └── PowerShell ISE │ │ └── Visibility.yml ├── Item Hierarchy Rules │ └── Has Ancestor Of Template.yml ├── Rules │ ├── PowerShell.yml │ └── PowerShell │ │ ├── ListView name matching.yml │ │ ├── Persistent Session Initiated.yml │ │ ├── Persistent Session Variable De.yml │ │ ├── Script execution result.yml │ │ ├── Tags.yml │ │ ├── Tags │ │ └── Default.yml │ │ └── Visibility.yml ├── Security Rules │ ├── PowerShell Security.yml │ └── PowerShell Security │ │ ├── Tags.yml │ │ ├── Tags │ │ └── Default.yml │ │ ├── User Role with inheritance.yml │ │ ├── User has Delegated Access.yml │ │ └── Visibility.yml ├── System Rules │ ├── PowerShell System.yml │ └── PowerShell System │ │ ├── Sitecore Config numeric settin.yml │ │ ├── Sitecore Config string setting.yml │ │ ├── Tags.yml │ │ ├── Tags │ │ └── Default.yml │ │ ├── Visibility.yml │ │ ├── Web Config numeric setting.yml │ │ └── Web Config string setting.yml └── Tags │ ├── PowerShell.yml │ └── PowerShell │ └── Visibility.yml ├── Scripts └── SPE │ ├── SPE.yml │ └── SPE │ ├── Core.yml │ ├── Core │ ├── Platform.yml │ ├── Platform │ │ ├── Content Editor.yml │ │ ├── Content Editor │ │ │ ├── Context Menu.yml │ │ │ ├── Context Menu │ │ │ │ ├── Edit Delegated Access.yml │ │ │ │ ├── Execute Script.yml │ │ │ │ └── Purge Empty Libraries.yml │ │ │ ├── Insert Item.yml │ │ │ └── Insert Item │ │ │ │ ├── Integration Point Libraries.yml │ │ │ │ ├── Module Wizard.yml │ │ │ │ ├── PowerShell Action.yml │ │ │ │ └── PowerShell Delegated Access.yml │ │ ├── Create Language Dictionary ent.yml │ │ ├── Development.yml │ │ ├── Development │ │ │ ├── Delegated Access Editor.yml │ │ │ ├── Integration points.yml │ │ │ ├── Integration points │ │ │ │ ├── Content Editor Context Menu.yml │ │ │ │ ├── Content Editor Context Menu │ │ │ │ │ └── Create Libraries.yml │ │ │ │ ├── Content Editor Contextual Ribb.yml │ │ │ │ ├── Content Editor Contextual Ribb │ │ │ │ │ └── Create Libraries.yml │ │ │ │ ├── Content Editor Gutter.yml │ │ │ │ ├── Content Editor Gutter │ │ │ │ │ └── Create Libraries.yml │ │ │ │ ├── Content Editor Insert Item.yml │ │ │ │ ├── Content Editor Insert Item │ │ │ │ │ └── Create Libraries.yml │ │ │ │ ├── Content Editor Ribbon.yml │ │ │ │ ├── Content Editor Ribbon │ │ │ │ │ └── Create Libraries.yml │ │ │ │ ├── Content Editor Warning.yml │ │ │ │ ├── Content Editor Warning │ │ │ │ │ └── Create Libraries.yml │ │ │ │ ├── Control Panel.yml │ │ │ │ ├── Control Panel │ │ │ │ │ └── Create Libraries.yml │ │ │ │ ├── Create Integration Points.yml │ │ │ │ ├── Event Handlers.yml │ │ │ │ ├── Event Handlers │ │ │ │ │ └── Create libraries for all event.yml │ │ │ │ ├── Functions.yml │ │ │ │ ├── Functions │ │ │ │ │ └── Create Libraries.yml │ │ │ │ ├── ISE Plugin.yml │ │ │ │ ├── ISE Plugin │ │ │ │ │ └── Create Libraries.yml │ │ │ │ ├── List View Exporters.yml │ │ │ │ ├── List View Exporters │ │ │ │ │ └── Create Libraries.yml │ │ │ │ ├── List View Ribbon Actions.yml │ │ │ │ ├── List View Ribbon Actions │ │ │ │ │ └── Create Libraries.yml │ │ │ │ ├── Logged In Pipeline.yml │ │ │ │ ├── Logged In Pipeline │ │ │ │ │ └── Create Libraries.yml │ │ │ │ ├── Logging in Pipeline.yml │ │ │ │ ├── Logging in Pipeline │ │ │ │ │ └── Create Libraries.yml │ │ │ │ ├── Logout Pipeline.yml │ │ │ │ ├── Logout Pipeline │ │ │ │ │ └── Create Libraries.yml │ │ │ │ ├── Page Editor Experience Buttons.yml │ │ │ │ ├── Page Editor Experience Buttons │ │ │ │ │ └── Create Libraries.yml │ │ │ │ ├── Page Editor Notifications.yml │ │ │ │ ├── Page Editor Notifications │ │ │ │ │ └── Create Libraries.yml │ │ │ │ ├── Rebuild All Integrations.yml │ │ │ │ ├── Start Menu Reports.yml │ │ │ │ ├── Start Menu Reports │ │ │ │ │ └── Create Libraries.yml │ │ │ │ ├── Tasks.yml │ │ │ │ ├── Tasks │ │ │ │ │ └── Create Libraries.yml │ │ │ │ ├── Toolbox.yml │ │ │ │ ├── Toolbox │ │ │ │ │ └── Create Libraries.yml │ │ │ │ ├── Web API.yml │ │ │ │ └── Web API │ │ │ │ │ └── Create Libraries.yml │ │ │ ├── PowerShell Extensions Maintena.yml │ │ │ └── PowerShell Extensions Maintena │ │ │ │ ├── Create Missing Documentation F.yml │ │ │ │ ├── Generate Help Documentation.yml │ │ │ │ ├── Generate Language XMLs.yml │ │ │ │ ├── Populate Display Name for Item.yml │ │ │ │ ├── Prepare Console Distribution.yml │ │ │ │ ├── Serialize Changes.yml │ │ │ │ ├── Set up Runner Window Chrome.yml │ │ │ │ └── Update SPE items from serializ.yml │ │ ├── Functions.yml │ │ ├── Functions │ │ │ ├── BaseXlsx.yml │ │ │ ├── Clear-Archive.yml │ │ │ ├── Compress-Archive.yml │ │ │ ├── ConvertTo-Xlsx.yml │ │ │ ├── Create-IntegrationPoint.yml │ │ │ ├── Edit-DTWCleanScript.yml │ │ │ ├── Expand-Archive.yml │ │ │ ├── Export-Xlsx.yml │ │ │ ├── Get-DTWFileEncoding.yml │ │ │ ├── Get-LockedChildItem.yml │ │ │ ├── Invoke-ApiScript.yml │ │ │ ├── Invoke-SqlCommand.yml │ │ │ ├── New-PackagePostStep.yml │ │ │ ├── Purge-EmptyLibrary.yml │ │ │ ├── Remoting.yml │ │ │ ├── Remoting2.yml │ │ │ ├── Render-ReportField.yml │ │ │ └── Resolve-Error.yml │ │ ├── Internal.yml │ │ ├── Internal │ │ │ ├── Context Help.yml │ │ │ ├── Context Help │ │ │ │ ├── Command Help - md.yml │ │ │ │ ├── Command Help.yml │ │ │ │ └── Regenerate cmdlet md for Gitbo.yml │ │ │ ├── ISE Plugins.yml │ │ │ ├── ISE Plugins │ │ │ │ ├── Format.yml │ │ │ │ ├── Scripts containing.yml │ │ │ │ └── Snippet.yml │ │ │ ├── Integrations.yml │ │ │ ├── Integrations │ │ │ │ ├── Content Editor Contextual Ribb.yml │ │ │ │ ├── Content Editor Gutter.yml │ │ │ │ ├── Content Editor Ribbon.yml │ │ │ │ └── Control Panel.yml │ │ │ ├── List View.yml │ │ │ └── List View │ │ │ │ ├── Export.yml │ │ │ │ ├── Export │ │ │ │ ├── CSV.yml │ │ │ │ ├── Email.yml │ │ │ │ ├── Excel.yml │ │ │ │ ├── HTML.yml │ │ │ │ ├── JSON.yml │ │ │ │ └── XML.yml │ │ │ │ ├── Ribbon.yml │ │ │ │ └── Ribbon │ │ │ │ ├── Item.yml │ │ │ │ ├── Item │ │ │ │ ├── Edit.yml │ │ │ │ └── Open.yml │ │ │ │ ├── ScriptSession.yml │ │ │ │ └── ScriptSession │ │ │ │ ├── Kill.yml │ │ │ │ ├── Open.yml │ │ │ │ └── Refresh.yml │ │ ├── Reusable.yml │ │ ├── Reusable │ │ │ └── Get-StateField.yml │ │ ├── Toolbox.yml │ │ ├── Toolbox │ │ │ ├── About Sitecore PowerShell Exte.yml │ │ │ ├── PowerShell Background Session_.yml │ │ │ ├── Re-create site from sitemap.yml │ │ │ └── Rebuild script integration poi.yml │ │ ├── Upgrade.yml │ │ └── Upgrade │ │ │ └── Compatibility.yml │ ├── X-UnitTests.yml │ └── X-UnitTests │ │ ├── Content Editor.yml │ │ ├── Content Editor │ │ ├── Context Menu.yml │ │ └── Context Menu │ │ │ └── Run Unit Tests.yml │ │ ├── Platform.yml │ │ └── Platform │ │ ├── Cloning.yml │ │ ├── Cloning │ │ └── Clones and Notifications.yml │ │ ├── Functions.yml │ │ ├── Functions │ │ └── Test Invoke-ApiScript.yml │ │ ├── Provider.yml │ │ ├── Provider │ │ ├── Test Copy-Item.yml │ │ ├── Test Get-ChildItem.yml │ │ └── Test Get-Item.yml │ │ ├── Security.yml │ │ ├── Security │ │ ├── Test Get-Domain.yml │ │ ├── Test Get-Role.yml │ │ ├── Test Get-RoleMember.yml │ │ ├── Test Get-User.yml │ │ └── Test New-User.yml │ │ ├── Sessions.yml │ │ └── Sessions │ │ └── Test Variables.yml │ ├── Extensions.yml │ ├── Extensions │ ├── Authorable Reports.yml │ └── Authorable Reports │ │ ├── Content Editor.yml │ │ ├── Content Editor │ │ ├── Insert Item.yml │ │ └── Insert Item │ │ │ └── PowerShell Rule Library.yml │ │ ├── Functions.yml │ │ ├── Functions │ │ ├── Get-ReportQuery.yml │ │ ├── Get-ReportRule.yml │ │ └── Show-SearchResultDetails.yml │ │ ├── Internal.yml │ │ ├── Internal │ │ ├── List View.yml │ │ └── List View │ │ │ ├── Ribbon.yml │ │ │ └── Ribbon │ │ │ ├── Item.yml │ │ │ ├── Item │ │ │ └── Find and Replace.yml │ │ │ ├── SearchResultItem.yml │ │ │ └── SearchResultItem │ │ │ ├── Open.yml │ │ │ ├── Rebuild.yml │ │ │ └── Refresh.yml │ │ ├── Reports.yml │ │ ├── Reports │ │ ├── Rules Based Report.yml │ │ ├── Rules.yml │ │ └── Rules │ │ │ ├── Any item under Content has lay.yml │ │ │ ├── Any item under Content has too.yml │ │ │ ├── Any item under Content is lock.yml │ │ │ ├── Media item is jpeg.yml │ │ │ └── Media item with empty Alt fiel.yml │ │ ├── Toolbox.yml │ │ ├── Toolbox │ │ └── Index Viewer.yml │ │ ├── Web API.yml │ │ └── Web API │ │ ├── Get-AvailableReport.yml │ │ ├── Reports.yml │ │ └── Reports │ │ ├── Active-Users.yml │ │ └── License-Usage.yml │ ├── Maintenance.yml │ ├── Maintenance │ ├── Index On Demand.yml │ ├── Index On Demand │ │ ├── Content Editor.yml │ │ └── Content Editor │ │ │ ├── Context Menu.yml │ │ │ └── Context Menu │ │ │ ├── Index this and descendants.yml │ │ │ └── Index this.yml │ ├── Media Library Maintenance.yml │ ├── Media Library Maintenance │ │ ├── Content Editor.yml │ │ ├── Content Editor │ │ │ ├── Context Menu.yml │ │ │ └── Context Menu │ │ │ │ └── Download.yml │ │ ├── Tasks.yml │ │ └── Tasks │ │ │ └── Delete unused media items olde.yml │ ├── System Maintenance.yml │ ├── System Maintenance │ │ ├── Control Panel.yml │ │ ├── Control Panel │ │ │ ├── Administration.yml │ │ │ ├── Database.yml │ │ │ ├── Database │ │ │ │ └── Clean up deleted items.yml │ │ │ ├── Reports.yml │ │ │ └── Reports │ │ │ │ └── Download Sitecore logs.yml │ │ ├── Tasks.yml │ │ └── Tasks │ │ │ ├── Archive Sitecore logs.yml │ │ │ ├── Clean up database tables.yml │ │ │ ├── Clean up databases.yml │ │ │ ├── Clean up deleted items older t.yml │ │ │ ├── Clean up link databases.yml │ │ │ └── Rebuild content search indexes.yml │ ├── Task Management.yml │ └── Task Management │ │ ├── Content Editor.yml │ │ ├── Content Editor │ │ ├── Context Menu.yml │ │ ├── Context Menu │ │ │ ├── Edit Task Schedule.yml │ │ │ └── Run Task Schedule.yml │ │ ├── Insert Item.yml │ │ └── Insert Item │ │ │ └── PowerShell Scripted Task Sched.yml │ │ ├── Functions.yml │ │ ├── Functions │ │ └── Edit-TaskSchedule.yml │ │ ├── Internal.yml │ │ ├── Internal │ │ ├── List View.yml │ │ └── List View │ │ │ ├── Ribbon.yml │ │ │ └── Ribbon │ │ │ ├── Item.yml │ │ │ └── Item │ │ │ ├── Edit Schedule.yml │ │ │ └── Execute Now.yml │ │ ├── Toolbox.yml │ │ └── Toolbox │ │ └── Task Manager.yml │ ├── Reporting.yml │ ├── Reporting │ ├── Content Reports.yml │ └── Content Reports │ │ ├── Internal.yml │ │ ├── Internal │ │ ├── List View.yml │ │ └── List View │ │ │ ├── Ribbon.yml │ │ │ └── Ribbon │ │ │ ├── PSObject.yml │ │ │ ├── PSObject │ │ │ └── Remove Links.yml │ │ │ ├── Site.yml │ │ │ └── Site │ │ │ └── Open.yml │ │ ├── Reports.yml │ │ └── Reports │ │ ├── Configuration Audit.yml │ │ ├── Configuration Audit │ │ ├── Find all Sitecore PowerShell C.yml │ │ ├── Find items with a missing temp.yml │ │ ├── Find scripts with rules config.yml │ │ └── Find site domain conflicts.yml │ │ ├── Content Audit.yml │ │ ├── Content Audit │ │ ├── Aliases.yml │ │ ├── Broken Links.yml │ │ ├── Items have no publishable vers.yml │ │ ├── Items last updated.yml │ │ ├── Items scheduled to archive.yml │ │ ├── Items unpublished in one or mo.yml │ │ ├── Items with active reminders.yml │ │ ├── Items with aliases.yml │ │ ├── Items with duplicate names.yml │ │ ├── Items with personalized render.yml │ │ ├── Items with template.yml │ │ ├── Items with tokens in fields.yml │ │ ├── Recent workflow history.yml │ │ └── Stale workflow items.yml │ │ ├── Media Audit.yml │ │ ├── Media Audit │ │ ├── Database based media items.yml │ │ ├── File based media items.yml │ │ ├── Image items with empty Alt fie.yml │ │ ├── Media items by size and type.yml │ │ ├── Media items last updated.yml │ │ ├── Media items not used by conten.yml │ │ ├── Media items with obsolete vers.yml │ │ ├── Media items with warnings.yml │ │ ├── Media items without associated.yml │ │ └── Unused media items.yml │ │ ├── Solution Audit.yml │ │ └── Solution Audit │ │ ├── Apply security to roles rather.yml │ │ ├── Assign icons to templates.yml │ │ ├── Break inheritance - do not den.yml │ │ ├── How many of each custom templa.yml │ │ ├── How many of which field types_.yml │ │ ├── How many times is each renderi.yml │ │ ├── Image Fields.yml │ │ ├── Leverage the presentation comp.yml │ │ ├── Limit number of versions.yml │ │ ├── Limit the number of items unde.yml │ │ ├── Make good use of inheritance.yml │ │ ├── Standard Values define setting.yml │ │ ├── TreelistEx instead of Treelist.yml │ │ ├── Use special tree syntax.yml │ │ ├── Use the Help and Title for fie.yml │ │ └── Which templates define the lay.yml │ ├── Samples.yml │ ├── Samples │ ├── Automatically show quick info_.yml │ ├── Automatically show quick info_ │ │ ├── Pipelines.yml │ │ └── Pipelines │ │ │ ├── LoggedIn.yml │ │ │ └── LoggedIn │ │ │ └── Automatically show quick info.yml │ ├── Enforce user password expirati.yml │ ├── Enforce user password expirati │ │ ├── Pipelines.yml │ │ └── Pipelines │ │ │ ├── LoggingIn.yml │ │ │ └── LoggingIn │ │ │ └── Enforce password expiration.yml │ ├── License Expiration.yml │ ├── License Expiration │ │ ├── Content Editor.yml │ │ ├── Content Editor │ │ │ ├── Warning.yml │ │ │ └── Warning │ │ │ │ └── Expiring License.yml │ │ ├── Page Editor.yml │ │ ├── Page Editor │ │ │ ├── Notification.yml │ │ │ └── Notification │ │ │ │ └── Expiring License.yml │ │ ├── Tasks.yml │ │ └── Tasks │ │ │ └── License Expiration Notificatio.yml │ ├── Random desktop background.yml │ ├── Random desktop background │ │ ├── Pipelines.yml │ │ └── Pipelines │ │ │ ├── LoggedIn.yml │ │ │ └── LoggedIn │ │ │ └── Random desktop background imag.yml │ ├── Training Modules.yml │ ├── Training Modules │ │ ├── Toolbox.yml │ │ └── Toolbox │ │ │ └── Tutorials.yml │ ├── Unlock user items on logout.yml │ └── Unlock user items on logout │ │ ├── Pipelines.yml │ │ └── Pipelines │ │ ├── Logout.yml │ │ └── Logout │ │ └── Unlock user items.yml │ ├── Tools.yml │ ├── Tools │ ├── Authoring Instrumentation.yml │ ├── Authoring Instrumentation │ │ ├── Content Editor.yml │ │ └── Content Editor │ │ │ ├── Context Menu.yml │ │ │ └── Context Menu │ │ │ ├── Author Statistics.yml │ │ │ ├── Publish My Items.yml │ │ │ └── Recent Author Activity.yml │ ├── Copy Renderings.yml │ ├── Copy Renderings │ │ ├── Content Editor.yml │ │ └── Content Editor │ │ │ ├── Context Menu.yml │ │ │ ├── Context Menu │ │ │ ├── Layout.yml │ │ │ └── Layout │ │ │ │ ├── Copy Renderings.yml │ │ │ │ └── Paste Renderings.yml │ │ │ ├── Ribbon.yml │ │ │ └── Ribbon │ │ │ ├── Presentation.yml │ │ │ └── Presentation │ │ │ ├── Layout.yml │ │ │ └── Layout │ │ │ └── Final to Shared.yml │ ├── Data Management.yml │ ├── Data Management │ │ ├── Content Editor.yml │ │ ├── Content Editor │ │ │ ├── Context Menu.yml │ │ │ └── Context Menu │ │ │ │ ├── Data Management.yml │ │ │ │ └── Data Management │ │ │ │ └── Show Items in Report.yml │ │ ├── Development.yml │ │ ├── Development │ │ │ └── Download Sample.yml │ │ ├── Internal.yml │ │ ├── Internal │ │ │ ├── List View.yml │ │ │ └── List View │ │ │ │ ├── Ribbon.yml │ │ │ │ └── Ribbon │ │ │ │ ├── Item.yml │ │ │ │ └── Item │ │ │ │ └── Properties.yml │ │ ├── Toolbox.yml │ │ └── Toolbox │ │ │ ├── Data Management.yml │ │ │ └── Data Management │ │ │ ├── Bulk Data Generator.yml │ │ │ ├── Bulk Item Restorer.yml │ │ │ ├── Bulk Template Changer.yml │ │ │ ├── Data Importer.yml │ │ │ └── Find and Replace.yml │ ├── Package Generator.yml │ ├── Package Generator │ │ ├── Content Editor.yml │ │ ├── Content Editor │ │ │ ├── Context Menu.yml │ │ │ └── Context Menu │ │ │ │ ├── Packaging.yml │ │ │ │ └── Packaging │ │ │ │ ├── Add Item to Package.yml │ │ │ │ ├── Add Tree to Package.yml │ │ │ │ ├── Download Package.yml │ │ │ │ ├── Preview Package Items.yml │ │ │ │ ├── Quick Download Tree as Package.yml │ │ │ │ └── Start New Package.yml │ │ ├── Functions.yml │ │ ├── Functions │ │ │ └── Setup-PackageGenerator.yml │ │ ├── Toolbox.yml │ │ └── Toolbox │ │ │ └── Create Anti-Package.yml │ ├── Publishing Status Gutter.yml │ ├── Publishing Status Gutter │ │ ├── Content Editor.yml │ │ └── Content Editor │ │ │ ├── Gutters.yml │ │ │ └── Gutters │ │ │ └── Publishing Status.yml │ ├── Security Management.yml │ └── Security Management │ │ ├── Content Editor.yml │ │ ├── Content Editor │ │ ├── Gutters.yml │ │ ├── Gutters │ │ │ └── Elevated Unlock.yml │ │ ├── Ribbon.yml │ │ ├── Ribbon │ │ │ ├── Security.yml │ │ │ └── Security │ │ │ │ ├── Tools.yml │ │ │ │ └── Tools │ │ │ │ └── Elevated Unlock.yml │ │ ├── Warning.yml │ │ └── Warning │ │ │ └── Elevated Unlock.yml │ │ ├── Development.yml │ │ ├── Development │ │ ├── Unlock Item and Reload Page.yml │ │ └── Unlock Item.yml │ │ ├── Internal.yml │ │ ├── Internal │ │ ├── List View.yml │ │ └── List View │ │ │ ├── Ribbon.yml │ │ │ └── Ribbon │ │ │ ├── Item.yml │ │ │ ├── Item │ │ │ ├── Transfer Item Security.yml │ │ │ ├── Transfer Lock.yml │ │ │ ├── Unlock All.yml │ │ │ └── Unlock.yml │ │ │ ├── MembershipUserWrapper.yml │ │ │ ├── MembershipUserWrapper │ │ │ └── Kick User.yml │ │ │ ├── Session.yml │ │ │ └── Session │ │ │ └── Kick User.yml │ │ ├── Page Editor.yml │ │ ├── Page Editor │ │ ├── Notification.yml │ │ └── Notification │ │ │ └── Elevated Unlock.yml │ │ ├── Reports.yml │ │ ├── Reports │ │ ├── Security Audit.yml │ │ └── Security Audit │ │ │ ├── Find Audit Trail from logs.yml │ │ │ ├── Items with security for an acc.yml │ │ │ ├── Items with security for domain.yml │ │ │ ├── Locked Items.yml │ │ │ └── Recently logged in users.yml │ │ ├── Tasks.yml │ │ ├── Tasks │ │ └── Remove idle user sessions.yml │ │ ├── Toolbox.yml │ │ └── Toolbox │ │ ├── Security Management.yml │ │ └── Security Management │ │ ├── Copy user roles.yml │ │ ├── Logged in Session Manager.yml │ │ └── Transfer item security.yml │ ├── Training.yml │ └── Training │ ├── Content Editor.yml │ ├── Content Editor │ ├── Context Menu.yml │ ├── Context Menu │ │ ├── Content Editor.yml │ │ └── Content Editor │ │ │ ├── Context Menu.yml │ │ │ └── Context Menu │ │ │ ├── Edit common fields.yml │ │ │ ├── Training Menu.yml │ │ │ └── Training Menu │ │ │ ├── Disabled.yml │ │ │ └── Enabled.yml │ ├── Contextual Ribbon.yml │ ├── Contextual Ribbon │ │ ├── Content Editor.yml │ │ └── Content Editor │ │ │ ├── Contextual Ribbon.yml │ │ │ └── Contextual Ribbon │ │ │ ├── Images.yml │ │ │ └── Images │ │ │ ├── Media.yml │ │ │ └── Media │ │ │ ├── Image.yml │ │ │ └── Image │ │ │ └── Optimize.yml │ ├── Gutter.yml │ ├── Gutter │ │ ├── Content Editor.yml │ │ ├── Content Editor │ │ │ ├── Gutters.yml │ │ │ └── Gutters │ │ │ │ └── Sample Gutter.yml │ │ ├── Reusable.yml │ │ └── Reusable │ │ │ └── DoSomething.yml │ ├── Insert Item.yml │ ├── Insert Item │ │ ├── Content Editor.yml │ │ └── Content Editor │ │ │ ├── Insert Item.yml │ │ │ └── Insert Item │ │ │ └── Simple Insert Item.yml │ ├── Ribbon.yml │ ├── Ribbon │ │ ├── Content Editor.yml │ │ └── Content Editor │ │ │ ├── Ribbon.yml │ │ │ └── Ribbon │ │ │ ├── Home.yml │ │ │ ├── Home │ │ │ ├── Training.yml │ │ │ └── Training │ │ │ │ └── Simple Command.yml │ │ │ ├── My Awesome Toolbar.yml │ │ │ └── My Awesome Toolbar │ │ │ ├── Section 1.yml │ │ │ ├── Section 1 │ │ │ └── Button.yml │ │ │ ├── Section 2.yml │ │ │ ├── Section 2 │ │ │ ├── Small_Button1.yml │ │ │ └── Small_Button2.yml │ │ │ ├── Section 3.yml │ │ │ └── Section 3 │ │ │ ├── Combo_Button List.yml │ │ │ └── Combo_Button List │ │ │ ├── Button1.yml │ │ │ └── Button2.yml │ ├── Warning.yml │ └── Warning │ │ ├── Content Editor.yml │ │ └── Content Editor │ │ ├── Reusable.yml │ │ ├── Reusable │ │ └── Warning Dialog.yml │ │ ├── Warning.yml │ │ └── Warning │ │ └── Simple Content Warning.yml │ ├── Misc.yml │ ├── Misc │ ├── Datasources.yml │ ├── Datasources │ │ ├── Field Data Source.yml │ │ └── Field Data Source │ │ │ └── Content Search Datasource.yml │ ├── Dialogs.yml │ ├── Dialogs │ │ ├── Advanced.yml │ │ ├── Advanced │ │ │ ├── Confirm a choice with ShowModa.yml │ │ │ ├── Custom confirmation.yml │ │ │ ├── Execute Sitecore shell command.yml │ │ │ ├── Read-Variable Kitchen Sink.yml │ │ │ ├── Read-Variable Minimal.yml │ │ │ ├── Read-Variable with Validation.yml │ │ │ └── Show-Application modal and des.yml │ │ ├── Script Runner.yml │ │ ├── Script Runner │ │ │ ├── Long Running Script - Advanced.yml │ │ │ └── Long Running Script - Simple.yml │ │ ├── Simple.yml │ │ └── Simple │ │ │ ├── Alert.yml │ │ │ ├── Confirm.yml │ │ │ ├── User Input with splatting.yml │ │ │ ├── User Input with validation.yml │ │ │ └── User Input.yml │ ├── Events.yml │ ├── Events │ │ ├── Event Handlers.yml │ │ └── Event Handlers │ │ │ ├── Item.yml │ │ │ ├── Item │ │ │ ├── Added.yml │ │ │ ├── Added │ │ │ │ └── Save Log.yml │ │ │ ├── Renamed.yml │ │ │ └── Renamed │ │ │ │ └── Save Log.yml │ │ │ ├── User.yml │ │ │ └── User │ │ │ ├── Created.yml │ │ │ └── Created │ │ │ ├── Customize MyToolbar.yml │ │ │ └── Log created user.yml │ ├── Pipelines.yml │ ├── Pipelines │ │ ├── Pipelines.yml │ │ └── Pipelines │ │ │ ├── LoggedIn.yml │ │ │ ├── LoggedIn │ │ │ └── User logged in.yml │ │ │ ├── LoggingIn.yml │ │ │ ├── LoggingIn │ │ │ └── User logging in.yml │ │ │ ├── Logout.yml │ │ │ └── Logout │ │ │ └── User logged out.yml │ ├── Scheduled Tasks.yml │ ├── Scheduled Tasks │ │ ├── Tasks.yml │ │ └── Tasks │ │ │ ├── Group Task.yml │ │ │ ├── Group Task │ │ │ ├── First Task.yml │ │ │ └── Second Task.yml │ │ │ └── Single Task.yml │ ├── Toolbox.yml │ └── Toolbox │ │ ├── Toolbox.yml │ │ └── Toolbox │ │ └── Training Tool.yml │ ├── Reporting.yml │ ├── Reporting │ ├── Advanced.yml │ ├── Advanced │ │ ├── Internal.yml │ │ ├── Internal │ │ │ ├── List View.yml │ │ │ └── List View │ │ │ │ ├── Export.yml │ │ │ │ ├── Export │ │ │ │ └── Burn to CD.yml │ │ │ │ ├── Ribbon.yml │ │ │ │ └── Ribbon │ │ │ │ ├── PSObject.yml │ │ │ │ └── PSObject │ │ │ │ └── Say Hello.yml │ │ ├── Reports.yml │ │ └── Reports │ │ │ ├── Training Reports - Advanced.yml │ │ │ └── Training Reports - Advanced │ │ │ └── Advanced Report.yml │ ├── Simple Authorable.yml │ ├── Simple Authorable │ │ ├── Reports.yml │ │ └── Reports │ │ │ ├── Rules.yml │ │ │ └── Rules │ │ │ └── Simple Report Rule.yml │ ├── Simple.yml │ └── Simple │ │ ├── Reports.yml │ │ └── Reports │ │ ├── Training Reports.yml │ │ └── Training Reports │ │ └── Simple Report.yml │ ├── Web API and Remoting.yml │ └── Web API and Remoting │ ├── Advanced Web API.yml │ ├── Advanced Web API │ ├── Web API.yml │ └── Web API │ │ ├── ChildrenAsHtml.yml │ │ ├── ChildrenAsJson.yml │ │ ├── ChildrenAsXml.yml │ │ └── HomeAndDescendants.yml │ ├── Simple Web API.yml │ └── Simple Web API │ ├── Web API.yml │ └── Web API │ └── TrainingWebApi.yml ├── UI ├── Applications │ ├── PowerShell.yml │ └── PowerShell │ │ ├── PowerShell Console.yml │ │ ├── PowerShell Runner.yml │ │ ├── PowerShellIse.yml │ │ ├── PowerShellIse │ │ ├── Menus.yml │ │ ├── Menus │ │ │ ├── Context.yml │ │ │ ├── Context │ │ │ │ └── Do not set location.yml │ │ │ ├── Execute.yml │ │ │ ├── Execute │ │ │ │ ├── Execute in a background job.yml │ │ │ │ └── Execute in http request contex.yml │ │ │ ├── Integrations.yml │ │ │ ├── Integrations │ │ │ │ ├── Content Editor Contextual Ribb.yml │ │ │ │ ├── Content Editor Gutter.yml │ │ │ │ ├── Content Editor Ribbon.yml │ │ │ │ └── Control Panel.yml │ │ │ ├── Languages.yml │ │ │ ├── Languages │ │ │ │ ├── Current language.yml │ │ │ │ └── More Languages.yml │ │ │ ├── New.yml │ │ │ ├── New │ │ │ │ └── New Module.yml │ │ │ ├── Save.yml │ │ │ ├── Save │ │ │ │ └── Save As.yml │ │ │ ├── Sessions.yml │ │ │ ├── Sessions │ │ │ │ ├── ISE editing session.yml │ │ │ │ ├── Script defined.yml │ │ │ │ └── Single execution.yml │ │ │ ├── Settings.yml │ │ │ ├── Settings │ │ │ │ ├── Console.yml │ │ │ │ ├── ISE.yml │ │ │ │ └── Results.yml │ │ │ ├── Users.yml │ │ │ └── Users │ │ │ │ ├── Current user.yml │ │ │ │ └── More Users.yml │ │ ├── Meta.yml │ │ ├── Meta │ │ │ ├── Edit.yml │ │ │ ├── EditConsoleSettings.yml │ │ │ └── EditIseSettings.yml │ │ ├── Ribbon.yml │ │ └── Ribbon │ │ │ ├── Debug.yml │ │ │ ├── Debug │ │ │ ├── Script.yml │ │ │ └── Script │ │ │ │ ├── Continue.yml │ │ │ │ ├── Immediate Window.yml │ │ │ │ ├── Step Over.yml │ │ │ │ ├── Step into.yml │ │ │ │ ├── Step out.yml │ │ │ │ └── Stop.yml │ │ │ ├── Plugins.yml │ │ │ ├── Plugins │ │ │ ├── Plugin.yml │ │ │ └── Plugin │ │ │ │ └── fake.yml │ │ │ ├── Script.yml │ │ │ ├── Script │ │ │ ├── Context.yml │ │ │ ├── Context │ │ │ │ ├── ActionsScripts.yml │ │ │ │ └── ActionsScripts │ │ │ │ │ ├── Context.yml │ │ │ │ │ └── Session.yml │ │ │ ├── ContextEx.yml │ │ │ ├── ContextEx │ │ │ │ ├── UserLanguageContextPanel.yml │ │ │ │ └── UserLanguageContextPanel │ │ │ │ │ ├── Language.yml │ │ │ │ │ └── User.yml │ │ │ ├── Info.yml │ │ │ ├── Info │ │ │ │ └── About.yml │ │ │ ├── Script.yml │ │ │ ├── Script │ │ │ │ ├── Abort.yml │ │ │ │ ├── Debug Small.yml │ │ │ │ ├── Execute Selection Small.yml │ │ │ │ └── Execute.yml │ │ │ ├── Write.yml │ │ │ └── Write │ │ │ │ ├── New.yml │ │ │ │ ├── Open.yml │ │ │ │ ├── Reload.yml │ │ │ │ ├── Save As.yml │ │ │ │ └── Save.yml │ │ │ ├── Settings.yml │ │ │ └── Settings │ │ │ ├── Current Script.yml │ │ │ ├── Current Script │ │ │ └── Runtime.yml │ │ │ ├── Integration.yml │ │ │ ├── Integration │ │ │ └── Rebuild.yml │ │ │ ├── Preferences.yml │ │ │ └── Preferences │ │ │ └── Settings.yml │ │ ├── PowerShellListView.yml │ │ ├── PowerShellListView │ │ ├── Ribbon.yml │ │ └── Ribbon │ │ │ ├── Results.yml │ │ │ └── Results │ │ │ ├── Actions.yml │ │ │ ├── Actions │ │ │ └── ActionsScripts.yml │ │ │ ├── Download.yml │ │ │ ├── Download │ │ │ └── ExportScripts.yml │ │ │ ├── Filter.yml │ │ │ ├── Filter │ │ │ └── Filter.yml │ │ │ ├── Page.yml │ │ │ └── Page │ │ │ ├── First.yml │ │ │ ├── Last.yml │ │ │ ├── Next.yml │ │ │ └── Previous.yml │ │ └── PowerShellReports.yml ├── Content Editor Console │ └── PowerShell Console.yml ├── Content Editor ISE │ └── Edit Script.yml ├── Context Editor Scripts │ └── Context PowerShell Scripts.yml ├── Dictionary │ ├── PowerShell.yml │ └── PowerShell │ │ ├── A.yml │ │ ├── A │ │ ├── A security dialog will prompt_.yml │ │ └── Are you sure you want to overw.yml │ │ ├── C.yml │ │ ├── C │ │ ├── Confirm to validate access to_.yml │ │ ├── Could not validate access usin.yml │ │ └── Create a new module.yml │ │ ├── D.yml │ │ ├── D │ │ ├── Documentation.yml │ │ ├── Done.yml │ │ ├── Drop elevated session state.yml │ │ └── DropList control cannot render.yml │ │ ├── E.yml │ │ ├── E │ │ ├── Elevate Session State.yml │ │ ├── Elevated session state is requ.yml │ │ ├── Enter your credentials to vali.yml │ │ ├── Error while rendering this edi.yml │ │ └── Execution prevented!.yml │ │ ├── F.yml │ │ ├── F │ │ └── Files from outside of the Site.yml │ │ ├── I.yml │ │ ├── I │ │ ├── ID b0b.yml │ │ ├── If you were sent to this page_.yml │ │ ├── Invert selection.yml │ │ └── if you no longer require it Fo.yml │ │ ├── L.yml │ │ ├── L │ │ └── Location b0b.yml │ │ ├── M.yml │ │ ├── M │ │ └── Most Recently opened scripts.yml │ │ ├── N.yml │ │ ├── N │ │ ├── No items available.yml │ │ └── No scripts foundDo you need to.yml │ │ ├── O.yml │ │ ├── O │ │ ├── Open Script.yml │ │ ├── Operation cannot be performed_.yml │ │ └── Operation.yml │ │ ├── P.yml │ │ ├── P │ │ ├── Performing 0 action on a scrip.yml │ │ ├── Pick the settings for the modu.yml │ │ ├── Please wait 0.yml │ │ ├── PowerShell Message.yml │ │ └── Progress.yml │ │ ├── R.yml │ │ ├── R │ │ ├── Recent Users.yml │ │ ├── Recent and enabled languages.yml │ │ ├── Running script.yml │ │ └── remaining.yml │ │ ├── S.yml │ │ ├── S │ │ ├── Script Execution Result.yml │ │ ├── Script cannot be executed as i.yml │ │ ├── Script defined 0.yml │ │ ├── Script finished - no results t.yml │ │ ├── Script name to search for - pr.yml │ │ ├── Script parameters.yml │ │ ├── Script with that name already_.yml │ │ ├── Scripts matching 0 in 1 databa.yml │ │ ├── Scripts matching 0 in all data.yml │ │ ├── Select Script Library.yml │ │ ├── Select a library where you wan.yml │ │ ├── Select a script you want to op.yml │ │ ├── Select the Library that you wa.yml │ │ ├── Select the script item that yo.yml │ │ ├── Session privilege elevation is.yml │ │ ├── Session privilege elevation is_34ffa31f-746e-4b42-959f-d714173cb1b8.yml │ │ ├── Sessions in memory.yml │ │ ├── Show copyright.yml │ │ ├── Single execution.yml │ │ ├── Size.yml │ │ ├── Specify a name for your script.yml │ │ └── Status.yml │ │ ├── T.yml │ │ ├── T │ │ ├── The data for the dialog is not.yml │ │ ├── The item is not a script.yml │ │ ├── The script you are running req.yml │ │ ├── There is no file attached.yml │ │ └── Time remaining.yml │ │ ├── U.yml │ │ ├── U │ │ ├── Untitled.yml │ │ ├── User b0b.yml │ │ └── Username.yml │ │ ├── V.yml │ │ ├── V │ │ ├── View script results and errors.yml │ │ └── View script results.yml │ │ ├── W.yml │ │ ├── W │ │ └── Working.yml │ │ ├── X.yml │ │ ├── Y.yml │ │ └── Y │ │ └── You have temporarily enabled s.yml ├── Launchpad ISE │ └── PowerShell ISE.yml ├── Launchpad Reports │ └── PowerShell Reports.yml ├── Layouts │ ├── PowerShell.yml │ └── PowerShell │ │ ├── PowerShell Console.yml │ │ ├── PowerShell ISE Sheer.yml │ │ ├── PowerShell ListView.yml │ │ ├── PowerShell Reports.yml │ │ └── PowerShell Runner.yml ├── Start Menu Console │ └── PowerShell Console.yml ├── Start Menu ISE │ └── PowerShell ISE.yml ├── Start Menu Reports │ ├── PowerShell Reports.yml │ └── PowerShell Reports │ │ └── PowerShell Fake Report.yml ├── Start Menu Toolbox │ └── PowerShell Toolbox.yml └── Tasks │ └── PowerShellScriptCommand.yml └── Users └── sitecore └── PowerShellExtensionsAPI.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/.gitignore -------------------------------------------------------------------------------- /Modules/CompareItemsBetweenInstances.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/CompareItemsBetweenInstances.ps1 -------------------------------------------------------------------------------- /Modules/Copy-RainbowContent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/Copy-RainbowContent.ps1 -------------------------------------------------------------------------------- /Modules/DownloadFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/DownloadFiles.ps1 -------------------------------------------------------------------------------- /Modules/Example-PowerShellRunspaces.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/Example-PowerShellRunspaces.ps1 -------------------------------------------------------------------------------- /Modules/Example-PowerShellRunspacesRemoting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/Example-PowerShellRunspacesRemoting.ps1 -------------------------------------------------------------------------------- /Modules/Example-UploadMedia.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/Example-UploadMedia.ps1 -------------------------------------------------------------------------------- /Modules/InvokeWebService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/InvokeWebService.ps1 -------------------------------------------------------------------------------- /Modules/Remoting Tests - Basic Token.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/Remoting Tests - Basic Token.ps1 -------------------------------------------------------------------------------- /Modules/Remoting Tests - Bearer Token.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/Remoting Tests - Bearer Token.ps1 -------------------------------------------------------------------------------- /Modules/Remoting Tests - Maintenance.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/Remoting Tests - Maintenance.Tests.ps1 -------------------------------------------------------------------------------- /Modules/Remoting Tests - Multiple Script Sessions.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/Remoting Tests - Multiple Script Sessions.Tests.ps1 -------------------------------------------------------------------------------- /Modules/Remoting Tests - RemotingAutomation.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/Remoting Tests - RemotingAutomation.Tests.ps1 -------------------------------------------------------------------------------- /Modules/Remoting Tests - Sync Content.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/Remoting Tests - Sync Content.Tests.ps1 -------------------------------------------------------------------------------- /Modules/Remoting Tests - Upload with RemoteScriptCall.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/Remoting Tests - Upload with RemoteScriptCall.Tests.ps1 -------------------------------------------------------------------------------- /Modules/Remoting Tests - Web Api.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/Remoting Tests - Web Api.Tests.ps1 -------------------------------------------------------------------------------- /Modules/SIF/Package-WDP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/SIF/Package-WDP.ps1 -------------------------------------------------------------------------------- /Modules/SIF/SPE-Developer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/SIF/SPE-Developer.ps1 -------------------------------------------------------------------------------- /Modules/SIF/install-module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/SIF/install-module.json -------------------------------------------------------------------------------- /Modules/SPE/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/SPE/.vscode/launch.json -------------------------------------------------------------------------------- /Modules/SPE/ConvertFrom-CliXml.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/SPE/ConvertFrom-CliXml.ps1 -------------------------------------------------------------------------------- /Modules/SPE/ConvertTo-CliXml.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/SPE/ConvertTo-CliXml.ps1 -------------------------------------------------------------------------------- /Modules/SPE/FormatData/Sitecore.Views.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/SPE/FormatData/Sitecore.Views.ps1xml -------------------------------------------------------------------------------- /Modules/SPE/Invoke-GenericMethod.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/SPE/Invoke-GenericMethod.ps1 -------------------------------------------------------------------------------- /Modules/SPE/Invoke-RemoteScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/SPE/Invoke-RemoteScript.ps1 -------------------------------------------------------------------------------- /Modules/SPE/Libraries/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/SPE/Libraries/readme.txt -------------------------------------------------------------------------------- /Modules/SPE/MediaSyncWatcher.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/SPE/MediaSyncWatcher.ps1 -------------------------------------------------------------------------------- /Modules/SPE/New-Jwt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/SPE/New-Jwt.ps1 -------------------------------------------------------------------------------- /Modules/SPE/New-RunspacedDelegate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/SPE/New-RunspacedDelegate.ps1 -------------------------------------------------------------------------------- /Modules/SPE/New-ScriptSession.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/SPE/New-ScriptSession.ps1 -------------------------------------------------------------------------------- /Modules/SPE/Receive-RemoteItem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/SPE/Receive-RemoteItem.ps1 -------------------------------------------------------------------------------- /Modules/SPE/SPE.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/SPE/SPE.psd1 -------------------------------------------------------------------------------- /Modules/SPE/SPE.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/SPE/SPE.psm1 -------------------------------------------------------------------------------- /Modules/SPE/Send-RemoteItem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/SPE/Send-RemoteItem.ps1 -------------------------------------------------------------------------------- /Modules/SPE/Stop-ScriptSession.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/SPE/Stop-ScriptSession.ps1 -------------------------------------------------------------------------------- /Modules/SPE/Test-RemoteConnection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/SPE/Test-RemoteConnection.ps1 -------------------------------------------------------------------------------- /Modules/SPE/Test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/SPE/Test.ps1 -------------------------------------------------------------------------------- /Modules/SPE/TypeData/Sitecore.Types.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/SPE/TypeData/Sitecore.Types.ps1xml -------------------------------------------------------------------------------- /Modules/SPE/Wait-RemoteScriptSession.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/SPE/Wait-RemoteScriptSession.ps1 -------------------------------------------------------------------------------- /Modules/SPE/Wait-RemoteSitecoreJob.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/SPE/Wait-RemoteSitecoreJob.ps1 -------------------------------------------------------------------------------- /Modules/ScratchPad.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/ScratchPad.ps1 -------------------------------------------------------------------------------- /Modules/ScratchPad4.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/ScratchPad4.ps1 -------------------------------------------------------------------------------- /Modules/ScratchPad5.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/ScratchPad5.ps1 -------------------------------------------------------------------------------- /Modules/Setup-Module.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/Setup-Module.ps1 -------------------------------------------------------------------------------- /Modules/TestRunner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/TestRunner.ps1 -------------------------------------------------------------------------------- /Modules/spe-jwt-demo/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/spe-jwt-demo/demo.js -------------------------------------------------------------------------------- /Modules/spe-jwt-demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/spe-jwt-demo/package-lock.json -------------------------------------------------------------------------------- /Modules/spe-jwt-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/spe-jwt-demo/package.json -------------------------------------------------------------------------------- /Modules/spe-jwt-demo/tokener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/spe-jwt-demo/tokener.js -------------------------------------------------------------------------------- /Modules/spe-test/Kittens.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/spe-test/Kittens.zip -------------------------------------------------------------------------------- /Modules/spe-test/data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/spe-test/data.xml -------------------------------------------------------------------------------- /Modules/spe-test/kitten-replacement.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/spe-test/kitten-replacement.jpg -------------------------------------------------------------------------------- /Modules/spe-test/kitten.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/spe-test/kitten.jpg -------------------------------------------------------------------------------- /Modules/z.SPE.Security.Disabler.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Modules/z.SPE.Security.Disabler.config -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/README.md -------------------------------------------------------------------------------- /Spe.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/Spe.sln -------------------------------------------------------------------------------- /cli/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/cli/.config/dotnet-tools.json -------------------------------------------------------------------------------- /cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/cli/.gitignore -------------------------------------------------------------------------------- /cli/.sitecore/schemas/ModuleFile.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/cli/.sitecore/schemas/ModuleFile.schema.json -------------------------------------------------------------------------------- /cli/.sitecore/schemas/RootConfigurationFile.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/cli/.sitecore/schemas/RootConfigurationFile.schema.json -------------------------------------------------------------------------------- /cli/.sitecore/schemas/UserConfiguration.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/cli/.sitecore/schemas/UserConfiguration.schema.json -------------------------------------------------------------------------------- /cli/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/cli/.vscode/settings.json -------------------------------------------------------------------------------- /cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/cli/README.md -------------------------------------------------------------------------------- /cli/generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/cli/generate.bat -------------------------------------------------------------------------------- /cli/modules/Spe.Core.module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/cli/modules/Spe.Core.module.json -------------------------------------------------------------------------------- /cli/modules/Spe.Rules.module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/cli/modules/Spe.Rules.module.json -------------------------------------------------------------------------------- /cli/modules/Spe.Scripts.module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/cli/modules/Spe.Scripts.module.json -------------------------------------------------------------------------------- /cli/modules/Spe.UI.module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/cli/modules/Spe.UI.module.json -------------------------------------------------------------------------------- /cli/sitecore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/cli/sitecore.json -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/docker/.env -------------------------------------------------------------------------------- /docker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/docker/.gitignore -------------------------------------------------------------------------------- /docker/build/cm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/docker/build/cm/Dockerfile -------------------------------------------------------------------------------- /docker/data/mssql/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/data/solr/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/deploy/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/tools/bin/Microsoft.Web.XmlTransform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/docker/tools/bin/Microsoft.Web.XmlTransform.dll -------------------------------------------------------------------------------- /docker/tools/dev-patches/CustomErrorsOff/Web.config.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/docker/tools/dev-patches/CustomErrorsOff/Web.config.xdt -------------------------------------------------------------------------------- /docker/tools/dev-patches/DebugOn/Web.config.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/docker/tools/dev-patches/DebugOn/Web.config.xdt -------------------------------------------------------------------------------- /docker/tools/dev-patches/DevEnvOn/Web.config.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/docker/tools/dev-patches/DevEnvOn/Web.config.xdt -------------------------------------------------------------------------------- /docker/tools/dev-patches/HttpErrorsDetailed/Web.config.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/docker/tools/dev-patches/HttpErrorsDetailed/Web.config.xdt -------------------------------------------------------------------------------- /docker/tools/dev-patches/OptimizeCompilationsOn/Web.config.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/docker/tools/dev-patches/OptimizeCompilationsOn/Web.config.xdt -------------------------------------------------------------------------------- /docker/tools/entrypoints/iis/Development.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/docker/tools/entrypoints/iis/Development.ps1 -------------------------------------------------------------------------------- /docker/tools/scripts/Deploy-TdsWdpPackages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/docker/tools/scripts/Deploy-TdsWdpPackages.ps1 -------------------------------------------------------------------------------- /docker/tools/scripts/Get-PatchFolders.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/docker/tools/scripts/Get-PatchFolders.ps1 -------------------------------------------------------------------------------- /docker/tools/scripts/Install-ConfigurationFolder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/docker/tools/scripts/Install-ConfigurationFolder.ps1 -------------------------------------------------------------------------------- /docker/tools/scripts/Invoke-XdtTransform.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/docker/tools/scripts/Invoke-XdtTransform.ps1 -------------------------------------------------------------------------------- /docker/tools/scripts/Watch-Directory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/docker/tools/scripts/Watch-Directory.ps1 -------------------------------------------------------------------------------- /docker/traefik/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/traefik/certs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/traefik/config/dynamic/certs_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/docker/traefik/config/dynamic/certs_config.yaml -------------------------------------------------------------------------------- /docs/Release process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/docs/Release process.md -------------------------------------------------------------------------------- /docs/readme-console-ise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/docs/readme-console-ise.png -------------------------------------------------------------------------------- /docs/readme-ise.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/docs/readme-ise.gif -------------------------------------------------------------------------------- /goodluck.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/goodluck.ps1 -------------------------------------------------------------------------------- /init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/init.ps1 -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/license.md -------------------------------------------------------------------------------- /releases/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releases/configs/Test.EnableLanguageFallback.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/releases/configs/Test.EnableLanguageFallback.config -------------------------------------------------------------------------------- /releases/configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/releases/configuration.json -------------------------------------------------------------------------------- /src/Deploy_Functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Deploy_Functions.ps1 -------------------------------------------------------------------------------- /src/Libraries/PowerShell.MamlGenerator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Libraries/PowerShell.MamlGenerator.dll -------------------------------------------------------------------------------- /src/Libraries/PowerShell.MamlGenerator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Libraries/PowerShell.MamlGenerator.pdb -------------------------------------------------------------------------------- /src/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/NuGet.config -------------------------------------------------------------------------------- /src/Post_Build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Post_Build.ps1 -------------------------------------------------------------------------------- /src/Spe.Abstractions/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Abstractions/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Spe.Abstractions/Spe.Abstractions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Abstractions/Spe.Abstractions.csproj -------------------------------------------------------------------------------- /src/Spe.Abstractions/VersionDecoupling/Interfaces/IJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Abstractions/VersionDecoupling/Interfaces/IJob.cs -------------------------------------------------------------------------------- /src/Spe.Abstractions/VersionDecoupling/Interfaces/IObsoletor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Abstractions/VersionDecoupling/Interfaces/IObsoletor.cs -------------------------------------------------------------------------------- /src/Spe.Abstractions/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Abstractions/packages.config -------------------------------------------------------------------------------- /src/Spe.Package/Install/PackagePostStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Package/Install/PackagePostStep.cs -------------------------------------------------------------------------------- /src/Spe.Package/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Package/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Spe.Package/Spe.Package.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Package/Spe.Package.csproj -------------------------------------------------------------------------------- /src/Spe.Package/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Package/packages.config -------------------------------------------------------------------------------- /src/Spe.Sitecore8/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Sitecore8/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Spe.Sitecore8/Services/SpeAuthenticationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Sitecore8/Services/SpeAuthenticationManager.cs -------------------------------------------------------------------------------- /src/Spe.Sitecore8/Services/SpeIndexManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Sitecore8/Services/SpeIndexManager.cs -------------------------------------------------------------------------------- /src/Spe.Sitecore8/Services/SpeJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Sitecore8/Services/SpeJob.cs -------------------------------------------------------------------------------- /src/Spe.Sitecore8/Services/SpeJobManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Sitecore8/Services/SpeJobManager.cs -------------------------------------------------------------------------------- /src/Spe.Sitecore8/Services/SpeJobMessageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Sitecore8/Services/SpeJobMessageManager.cs -------------------------------------------------------------------------------- /src/Spe.Sitecore8/Services/SpeJobOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Sitecore8/Services/SpeJobOptions.cs -------------------------------------------------------------------------------- /src/Spe.Sitecore8/Services/SpeObsoletor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Sitecore8/Services/SpeObsoletor.cs -------------------------------------------------------------------------------- /src/Spe.Sitecore8/Services/SpePublishManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Sitecore8/Services/SpePublishManager.cs -------------------------------------------------------------------------------- /src/Spe.Sitecore8/Spe.Sitecore8.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Sitecore8/Spe.Sitecore8.csproj -------------------------------------------------------------------------------- /src/Spe.Sitecore8/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Sitecore8/packages.config -------------------------------------------------------------------------------- /src/Spe.Sitecore92/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Sitecore92/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Spe.Sitecore92/Services/SpeAuthenticationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Sitecore92/Services/SpeAuthenticationManager.cs -------------------------------------------------------------------------------- /src/Spe.Sitecore92/Services/SpeIndexManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Sitecore92/Services/SpeIndexManager.cs -------------------------------------------------------------------------------- /src/Spe.Sitecore92/Services/SpeJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Sitecore92/Services/SpeJob.cs -------------------------------------------------------------------------------- /src/Spe.Sitecore92/Services/SpeJobManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Sitecore92/Services/SpeJobManager.cs -------------------------------------------------------------------------------- /src/Spe.Sitecore92/Services/SpeJobMessageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Sitecore92/Services/SpeJobMessageManager.cs -------------------------------------------------------------------------------- /src/Spe.Sitecore92/Services/SpeJobOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Sitecore92/Services/SpeJobOptions.cs -------------------------------------------------------------------------------- /src/Spe.Sitecore92/Services/SpeObsoletor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Sitecore92/Services/SpeObsoletor.cs -------------------------------------------------------------------------------- /src/Spe.Sitecore92/Services/SpePublishManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Sitecore92/Services/SpePublishManager.cs -------------------------------------------------------------------------------- /src/Spe.Sitecore92/Spe.Sitecore92.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Sitecore92/Spe.Sitecore92.csproj -------------------------------------------------------------------------------- /src/Spe.Sitecore92/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe.Sitecore92/packages.config -------------------------------------------------------------------------------- /src/Spe/App_Config/Include/Rainbow.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/App_Config/Include/Rainbow.config -------------------------------------------------------------------------------- /src/Spe/App_Config/Include/Spe/Spe.Events.config.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/App_Config/Include/Spe/Spe.Events.config.disabled -------------------------------------------------------------------------------- /src/Spe/App_Config/Include/Spe/Spe.IdentityServer.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/App_Config/Include/Spe/Spe.IdentityServer.config -------------------------------------------------------------------------------- /src/Spe/App_Config/Include/Spe/Spe.Minimal.config.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/App_Config/Include/Spe/Spe.Minimal.config.disabled -------------------------------------------------------------------------------- /src/Spe/App_Config/Include/Spe/Spe.Serialization.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/App_Config/Include/Spe/Spe.Serialization.config -------------------------------------------------------------------------------- /src/Spe/App_Config/Include/Spe/Spe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/App_Config/Include/Spe/Spe.config -------------------------------------------------------------------------------- /src/Spe/App_Config/Include/Unicorn/Unicorn.AutoPublish.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/App_Config/Include/Unicorn/Unicorn.AutoPublish.config -------------------------------------------------------------------------------- /src/Spe/App_Config/Include/Unicorn/Unicorn.DataProvider.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/App_Config/Include/Unicorn/Unicorn.DataProvider.config -------------------------------------------------------------------------------- /src/Spe/App_Config/Include/Unicorn/Unicorn.PowerShell.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/App_Config/Include/Unicorn/Unicorn.PowerShell.config -------------------------------------------------------------------------------- /src/Spe/App_Config/Include/Unicorn/Unicorn.Roles.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/App_Config/Include/Unicorn/Unicorn.Roles.config -------------------------------------------------------------------------------- /src/Spe/App_Config/Include/Unicorn/Unicorn.UI.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/App_Config/Include/Unicorn/Unicorn.UI.config -------------------------------------------------------------------------------- /src/Spe/App_Config/Include/Unicorn/Unicorn.Users.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/App_Config/Include/Unicorn/Unicorn.Users.config -------------------------------------------------------------------------------- /src/Spe/App_Config/Include/Unicorn/Unicorn.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/App_Config/Include/Unicorn/Unicorn.config -------------------------------------------------------------------------------- /src/Spe/App_Config/Include/z.Spe/z.Spe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/App_Config/Include/z.Spe/z.Spe.config -------------------------------------------------------------------------------- /src/Spe/Client/Applications/Administration/AdminPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Applications/Administration/AdminPage.cs -------------------------------------------------------------------------------- /src/Spe/Client/Applications/Administration/NonSecurePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Applications/Administration/NonSecurePage.cs -------------------------------------------------------------------------------- /src/Spe/Client/Applications/Administration/PowerShell.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Applications/Administration/PowerShell.aspx.cs -------------------------------------------------------------------------------- /src/Spe/Client/Applications/ConfirmChoice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Applications/ConfirmChoice.cs -------------------------------------------------------------------------------- /src/Spe/Client/Applications/DownloadFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Applications/DownloadFile.cs -------------------------------------------------------------------------------- /src/Spe/Client/Applications/ExecutionMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Applications/ExecutionMessages.cs -------------------------------------------------------------------------------- /src/Spe/Client/Applications/FieldEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Applications/FieldEditor.cs -------------------------------------------------------------------------------- /src/Spe/Client/Applications/GetStringResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Applications/GetStringResponse.cs -------------------------------------------------------------------------------- /src/Spe/Client/Applications/IPowerShellRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Applications/IPowerShellRunner.cs -------------------------------------------------------------------------------- /src/Spe/Client/Applications/ImmediateDebugWindowLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Applications/ImmediateDebugWindowLauncher.cs -------------------------------------------------------------------------------- /src/Spe/Client/Applications/PowerShellConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Applications/PowerShellConsole.cs -------------------------------------------------------------------------------- /src/Spe/Client/Applications/PowerShellExternalView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Applications/PowerShellExternalView.cs -------------------------------------------------------------------------------- /src/Spe/Client/Applications/PowerShellIse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Applications/PowerShellIse.cs -------------------------------------------------------------------------------- /src/Spe/Client/Applications/PowerShellMultiValuePrompt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Applications/PowerShellMultiValuePrompt.cs -------------------------------------------------------------------------------- /src/Spe/Client/Applications/PowerShellReports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Applications/PowerShellReports.cs -------------------------------------------------------------------------------- /src/Spe/Client/Applications/PowerShellResultViewerList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Applications/PowerShellResultViewerList.cs -------------------------------------------------------------------------------- /src/Spe/Client/Applications/PowerShellResultViewerText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Applications/PowerShellResultViewerText.cs -------------------------------------------------------------------------------- /src/Spe/Client/Applications/PowerShellRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Applications/PowerShellRunner.cs -------------------------------------------------------------------------------- /src/Spe/Client/Applications/PowerShellScriptBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Applications/PowerShellScriptBrowser.cs -------------------------------------------------------------------------------- /src/Spe/Client/Applications/PowerShellSessionElevation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Applications/PowerShellSessionElevation.cs -------------------------------------------------------------------------------- /src/Spe/Client/Applications/RunnerOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Applications/RunnerOutput.cs -------------------------------------------------------------------------------- /src/Spe/Client/Applications/ScriptRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Applications/ScriptRunner.cs -------------------------------------------------------------------------------- /src/Spe/Client/Applications/SessionElevationWindowLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Applications/SessionElevationWindowLauncher.cs -------------------------------------------------------------------------------- /src/Spe/Client/Commands/AbortQueryState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Commands/AbortQueryState.cs -------------------------------------------------------------------------------- /src/Spe/Client/Commands/DebugQueryState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Commands/DebugQueryState.cs -------------------------------------------------------------------------------- /src/Spe/Client/Commands/EditIseSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Commands/EditIseSettings.cs -------------------------------------------------------------------------------- /src/Spe/Client/Commands/EditIseSettingsCombo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Commands/EditIseSettingsCombo.cs -------------------------------------------------------------------------------- /src/Spe/Client/Commands/ExecuteFieldEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Commands/ExecuteFieldEditor.cs -------------------------------------------------------------------------------- /src/Spe/Client/Commands/GalleryRuntimeQueryState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Commands/GalleryRuntimeQueryState.cs -------------------------------------------------------------------------------- /src/Spe/Client/Commands/ItemDefinedQueryState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Commands/ItemDefinedQueryState.cs -------------------------------------------------------------------------------- /src/Spe/Client/Commands/ListViewFilterQueryState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Commands/ListViewFilterQueryState.cs -------------------------------------------------------------------------------- /src/Spe/Client/Commands/ListViewPagingQueryState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Commands/ListViewPagingQueryState.cs -------------------------------------------------------------------------------- /src/Spe/Client/Commands/MenuItems/AddMaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Commands/MenuItems/AddMaster.cs -------------------------------------------------------------------------------- /src/Spe/Client/Commands/MenuItems/EditPowerShellScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Commands/MenuItems/EditPowerShellScript.cs -------------------------------------------------------------------------------- /src/Spe/Client/Commands/MenuItems/ExecutePowerShellConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Commands/MenuItems/ExecutePowerShellConsole.cs -------------------------------------------------------------------------------- /src/Spe/Client/Commands/MenuItems/ExecutePowerShellScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Commands/MenuItems/ExecutePowerShellScript.cs -------------------------------------------------------------------------------- /src/Spe/Client/Commands/MenuItems/ItemNew.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Commands/MenuItems/ItemNew.cs -------------------------------------------------------------------------------- /src/Spe/Client/Commands/MenuItems/ScriptLibraryMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Commands/MenuItems/ScriptLibraryMenuItem.cs -------------------------------------------------------------------------------- /src/Spe/Client/Commands/MenuItems/ShowExternalPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Commands/MenuItems/ShowExternalPage.cs -------------------------------------------------------------------------------- /src/Spe/Client/Commands/RuntimeQueryState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Commands/RuntimeQueryState.cs -------------------------------------------------------------------------------- /src/Spe/Client/Commands/SelectUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Commands/SelectUser.cs -------------------------------------------------------------------------------- /src/Spe/Client/Commands/Selectlanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Commands/Selectlanguage.cs -------------------------------------------------------------------------------- /src/Spe/Client/Commands/WebEditScriptCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Commands/WebEditScriptCommand.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/BucketlistExtended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/BucketlistExtended.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/CompleteMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/CompleteMessage.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/ContentEditorRibbonPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/ContentEditorRibbonPanel.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/ContextGallery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/ContextGallery.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/EditExtended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/EditExtended.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/IseContextPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/IseContextPanel.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/IseContextPanelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/IseContextPanelBase.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/IseContextPanelEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/IseContextPanelEx.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/IsePluginPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/IsePluginPanel.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/IsePluginStrip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/IsePluginStrip.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/LanguageGallery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/LanguageGallery.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/LanguageHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/LanguageHistory.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/ListViewComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/ListViewComparer.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/Marquee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/Marquee.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/MruGallery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/MruGallery.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/MultilistExtended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/MultilistExtended.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/PSCheckList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/PSCheckList.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/PasswordExtended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/PasswordExtended.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/PowerShellListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/PowerShellListView.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/RibbonActionScriptsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/RibbonActionScriptsPanel.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/RibbonExportScriptsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/RibbonExportScriptsPanel.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/SessionCompleteEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/SessionCompleteEventArgs.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/SessionIDGallery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/SessionIDGallery.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/SpeJobMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/SpeJobMonitor.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/TreelistExtended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/TreelistExtended.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/UserGallery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/UserGallery.cs -------------------------------------------------------------------------------- /src/Spe/Client/Controls/UserPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Client/Controls/UserPicker.cs -------------------------------------------------------------------------------- /src/Spe/Commands/BaseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/BaseCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/BaseIndexCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/BaseIndexCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/BaseItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/BaseItemCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/BaseItemRecursiveCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/BaseItemRecursiveCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/BaseLanguageAgnosticItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/BaseLanguageAgnosticItemCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/AddBaseTemplateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/AddBaseTemplateCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/AddItemVersionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/AddItemVersionCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/BaseTemplateItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/BaseTemplateItemCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/Clones/ConvertFromItemCloneCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/Clones/ConvertFromItemCloneCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/Clones/GetItemCloneCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/Clones/GetItemCloneCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/Clones/GetItemCloneNotificationCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/Clones/GetItemCloneNotificationCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/Clones/NewItemCloneCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/Clones/NewItemCloneCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/Clones/NotificationAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/Clones/NotificationAction.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/Clones/NotificationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/Clones/NotificationType.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/DatabaseContextBaseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/DatabaseContextBaseCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/ExpandTokensCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/ExpandTokensCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/GetArchiveCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/GetArchiveCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/GetArchiveItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/GetArchiveItemCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/GetDatabaseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/GetDatabaseCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/GetItemFieldCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/GetItemFieldCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/GetItemReferenceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/GetItemReferenceCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/GetItemReferrerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/GetItemReferrerCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/GetItemTemplateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/GetItemTemplateCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/InitializeItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/InitializeItemCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/NewUsingBlockCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/NewUsingBlockCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/PublishItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/PublishItemCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/RemoveArchiveItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/RemoveArchiveItemCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/RemoveBaseTemplateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/RemoveBaseTemplateCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/RemoveItemVersionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/RemoveItemVersionCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/ResetItemFieldCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/ResetItemFieldCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/RestoreArchiveItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/RestoreArchiveItemCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/Search/BaseIndexItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/Search/BaseIndexItemCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/Search/BaseSearchCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/Search/BaseSearchCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/Search/FilterType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/Search/FilterType.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/Search/FindItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/Search/FindItemCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/Search/GetSearchIndexCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/Search/GetSearchIndexCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/Search/InitializeSearchIndexCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/Search/InitializeSearchIndexCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/Search/NewSearchPredicateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/Search/NewSearchPredicateCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/Search/RemoveSearchIndexItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/Search/RemoveSearchIndexItemCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/Search/ResumeSearchIndexCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/Search/ResumeSearchIndexCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/Search/SearchCriteria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/Search/SearchCriteria.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/Search/SearchOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/Search/SearchOperation.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/Search/StopSearchIndexCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/Search/StopSearchIndexCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/Search/SuspendSearchIndexCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/Search/SuspendSearchIndexCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/Search/UpdateSearchIndexItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/Search/UpdateSearchIndexItemCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/SetItemTemplateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/SetItemTemplateCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/TestBaseTemplateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/TestBaseTemplateCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/TestRuleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/TestRuleCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Data/UpdateItemReferrerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Data/UpdateItemReferrerCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Diagnostics/WriteLogCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Diagnostics/WriteLogCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/ErrorIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/ErrorIds.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/BaseFormCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/BaseFormCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/BaseListViewCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/BaseListViewCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/BaseShellCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/BaseShellCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/CloseWindowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/CloseWindowCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/InvokeJavaScriptCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/InvokeJavaScriptCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/InvokeShellCommandCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/InvokeShellCommandCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/Messages/CloseWindowMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/Messages/CloseWindowMessage.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/Messages/DownloadMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/Messages/DownloadMessage.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/Messages/IMessageWithResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/Messages/IMessageWithResult.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/Messages/OutDownloadMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/Messages/OutDownloadMessage.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/Messages/PromptMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/Messages/PromptMessage.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/Messages/ShowApplicationMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/Messages/ShowApplicationMessage.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/Messages/ShowListViewMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/Messages/ShowListViewMessage.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/Messages/ShowResultsMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/Messages/ShowResultsMessage.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/Messages/ShowUploadFileMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/Messages/ShowUploadFileMessage.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/OutDownloadCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/OutDownloadCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/ReadVariableCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/ReadVariableCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/ReceiveFileCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/ReceiveFileCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/SendFileCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/SendFileCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/SendSheerMessageCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/SendSheerMessageCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/ShowAlertCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/ShowAlertCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/ShowApplicationCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/ShowApplicationCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/ShowConfirmCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/ShowConfirmCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/ShowFieldEditorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/ShowFieldEditorCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/ShowInputCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/ShowInputCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/ShowListViewCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/ShowListViewCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/ShowListViewFeatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/ShowListViewFeatures.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/ShowModalDialogCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/ShowModalDialogCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/ShowResultsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/ShowResultsCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/ShowYesNoCancelCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/ShowYesNoCancelCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Interactive/UpdateListViewCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Interactive/UpdateListViewCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Jobs/GetSitecoreJobCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Jobs/GetSitecoreJobCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Modules/GetSpeModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Modules/GetSpeModule.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Modules/GetSpeModuleFeatureRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Modules/GetSpeModuleFeatureRoot.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Packages/BasePackageCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Packages/BasePackageCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Packages/ExportPackageCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Packages/ExportPackageCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Packages/GetPackageCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Packages/GetPackageCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Packages/GetPackageItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Packages/GetPackageItemCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Packages/InstallPackageCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Packages/InstallPackageCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Packages/NewExplicitFileSourceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Packages/NewExplicitFileSourceCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Packages/NewExplicitItemSourceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Packages/NewExplicitItemSourceCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Packages/NewFileSourceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Packages/NewFileSourceCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Packages/NewItemSourceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Packages/NewItemSourceCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Packages/NewPackageCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Packages/NewPackageCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Packages/NewSecuritySourceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Packages/NewSecuritySourceCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Presentation/AddPlaceholderSettingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Presentation/AddPlaceholderSettingCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Presentation/AddRenderingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Presentation/AddRenderingCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Presentation/BaseLayoutCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Presentation/BaseLayoutCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Presentation/BaseLayoutPerDeviceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Presentation/BaseLayoutPerDeviceCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Presentation/BasePlaceholderSettingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Presentation/BasePlaceholderSettingCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Presentation/BaseRenderingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Presentation/BaseRenderingCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Presentation/BaseRenderingParameterCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Presentation/BaseRenderingParameterCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Presentation/GetLayoutCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Presentation/GetLayoutCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Presentation/GetLayoutDeviceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Presentation/GetLayoutDeviceCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Presentation/GetPlaceholderSettingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Presentation/GetPlaceholderSettingCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Presentation/GetRenderingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Presentation/GetRenderingCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Presentation/GetRenderingParameterCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Presentation/GetRenderingParameterCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Presentation/MergeLayoutCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Presentation/MergeLayoutCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Presentation/NewPlaceHolderSettingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Presentation/NewPlaceHolderSettingCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Presentation/NewRenderingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Presentation/NewRenderingCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Presentation/RemoveLayoutCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Presentation/RemoveLayoutCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Presentation/RemoveRenderingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Presentation/RemoveRenderingCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Presentation/ResetLayoutCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Presentation/ResetLayoutCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Presentation/SetLayoutCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Presentation/SetLayoutCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Presentation/SetRenderingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Presentation/SetRenderingCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Presentation/SetRenderingParameterCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Presentation/SetRenderingParameterCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Presentation/SwitchRenderingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Presentation/SwitchRenderingCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Remoting/ConvertFromCliXmlCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Remoting/ConvertFromCliXmlCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Remoting/ConvertToCliXmlCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Remoting/ConvertToCliXmlCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Scheduler/GetTaskScheduleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Scheduler/GetTaskScheduleCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Scheduler/StartTaskScheduleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Scheduler/StartTaskScheduleCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/ScriptSessions/BaseScriptSessionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/ScriptSessions/BaseScriptSessionCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/ScriptSessions/GetScriptSessionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/ScriptSessions/GetScriptSessionCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/ScriptSessions/ReceiveScriptSessionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/ScriptSessions/ReceiveScriptSessionCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/ScriptSessions/StartScriptSessionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/ScriptSessions/StartScriptSessionCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/ScriptSessions/StopScriptSessionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/ScriptSessions/StopScriptSessionCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/ScriptSessions/WaitScriptSessionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/ScriptSessions/WaitScriptSessionCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/AccountIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/AccountIdentity.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Accounts/AddRoleMemberCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Accounts/AddRoleMemberCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Accounts/BaseSecurityCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Accounts/BaseSecurityCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Accounts/DisableUserCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Accounts/DisableUserCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Accounts/EnableUserCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Accounts/EnableUserCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Accounts/GetDomainCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Accounts/GetDomainCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Accounts/GetRoleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Accounts/GetRoleCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Accounts/GetRoleMemberCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Accounts/GetRoleMemberCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Accounts/GetUserCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Accounts/GetUserCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Accounts/NewDomainCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Accounts/NewDomainCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Accounts/NewRoleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Accounts/NewRoleCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Accounts/NewUserCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Accounts/NewUserCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Accounts/RemoveDomainCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Accounts/RemoveDomainCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Accounts/RemoveRoleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Accounts/RemoveRoleCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Accounts/RemoveUserCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Accounts/RemoveUserCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Accounts/SetUserCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Accounts/SetUserCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Accounts/SetUserPasswordCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Accounts/SetUserPasswordCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Accounts/TestAccountCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Accounts/TestAccountCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Accounts/UnlockUserCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Accounts/UnlockUserCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Items/AddItemAclCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Items/AddItemAclCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Items/BaseEditItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Items/BaseEditItemCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Items/BaseGovernanceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Items/BaseGovernanceCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Items/BaseItemAclCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Items/BaseItemAclCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Items/ClearItemAclCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Items/ClearItemAclCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Items/GetItemAclCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Items/GetItemAclCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Items/LockItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Items/LockItemCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Items/NewItemAclCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Items/NewItemAclCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Items/ProtectItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Items/ProtectItemCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Items/SetItemAclCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Items/SetItemAclCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Items/TestItemAclCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Items/TestItemAclCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Items/UnlockItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Items/UnlockItemCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Items/UnprotectItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Items/UnprotectItemCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Session/GetSessionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Session/GetSessionCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Session/LoginUserCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Session/LoginUserCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Session/LogoutUserCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Session/LogoutUserCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Security/Session/RemoveSessionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Security/Session/RemoveSessionCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Serialization/ExportItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Serialization/ExportItemCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Serialization/ExportRoleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Serialization/ExportRoleCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Serialization/ExportUserCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Serialization/ExportUserCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Serialization/GetPresetCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Serialization/GetPresetCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Serialization/ImportItemCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Serialization/ImportItemCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Serialization/ImportRoleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Serialization/ImportRoleCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Serialization/ImportUserCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Serialization/ImportUserCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Session/GetCacheCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Session/GetCacheCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Session/GetUserAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Session/GetUserAgent.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Session/ImportFunctionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Session/ImportFunctionCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Session/InvokeScriptCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Session/InvokeScriptCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Session/RestartApplicationCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Session/RestartApplicationCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Session/SetHostPropertyCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Session/SetHostPropertyCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Workflows/GetItemWorkflowEventCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Workflows/GetItemWorkflowEventCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Workflows/InvokeWorkflowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Workflows/InvokeWorkflowCommand.cs -------------------------------------------------------------------------------- /src/Spe/Commands/Workflows/NewItemWorkflowEventCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Commands/Workflows/NewItemWorkflowEventCommand.cs -------------------------------------------------------------------------------- /src/Spe/Core/Data/DisablePropertyExpander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Data/DisablePropertyExpander.cs -------------------------------------------------------------------------------- /src/Spe/Core/Debugging/Utility/Validate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Debugging/Utility/Validate.cs -------------------------------------------------------------------------------- /src/Spe/Core/Debugging/VariableContainerDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Debugging/VariableContainerDetails.cs -------------------------------------------------------------------------------- /src/Spe/Core/Debugging/VariableDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Debugging/VariableDetails.cs -------------------------------------------------------------------------------- /src/Spe/Core/Debugging/VariableDetailsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Debugging/VariableDetailsBase.cs -------------------------------------------------------------------------------- /src/Spe/Core/Diagnostics/PowerShellLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Diagnostics/PowerShellLog.cs -------------------------------------------------------------------------------- /src/Spe/Core/Extensions/CmdletExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Extensions/CmdletExtensions.cs -------------------------------------------------------------------------------- /src/Spe/Core/Extensions/CustomFieldAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Extensions/CustomFieldAccessor.cs -------------------------------------------------------------------------------- /src/Spe/Core/Extensions/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Extensions/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/Spe/Core/Extensions/ExpressionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Extensions/ExpressionExtensions.cs -------------------------------------------------------------------------------- /src/Spe/Core/Extensions/FieldExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Extensions/FieldExtensions.cs -------------------------------------------------------------------------------- /src/Spe/Core/Extensions/ItemEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Extensions/ItemEqualityComparer.cs -------------------------------------------------------------------------------- /src/Spe/Core/Extensions/ItemExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Extensions/ItemExtensions.cs -------------------------------------------------------------------------------- /src/Spe/Core/Extensions/ItemShellExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Extensions/ItemShellExtensions.cs -------------------------------------------------------------------------------- /src/Spe/Core/Extensions/LanguageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Extensions/LanguageExtensions.cs -------------------------------------------------------------------------------- /src/Spe/Core/Extensions/MessageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Extensions/MessageExtensions.cs -------------------------------------------------------------------------------- /src/Spe/Core/Extensions/NameValueCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Extensions/NameValueCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Spe/Core/Extensions/PSItemProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Extensions/PSItemProperty.cs -------------------------------------------------------------------------------- /src/Spe/Core/Extensions/PowerShellExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Extensions/PowerShellExtensions.cs -------------------------------------------------------------------------------- /src/Spe/Core/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /src/Spe/Core/Extensions/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Extensions/TypeExtensions.cs -------------------------------------------------------------------------------- /src/Spe/Core/Host/BufferSplitterCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Host/BufferSplitterCollection.cs -------------------------------------------------------------------------------- /src/Spe/Core/Host/CommandCompletion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Host/CommandCompletion.cs -------------------------------------------------------------------------------- /src/Spe/Core/Host/CommandHelp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Host/CommandHelp.cs -------------------------------------------------------------------------------- /src/Spe/Core/Host/OutputBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Host/OutputBuffer.cs -------------------------------------------------------------------------------- /src/Spe/Core/Host/OutputLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Host/OutputLine.cs -------------------------------------------------------------------------------- /src/Spe/Core/Host/OutputLineType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Host/OutputLineType.cs -------------------------------------------------------------------------------- /src/Spe/Core/Host/ScriptExecutionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Host/ScriptExecutionResult.cs -------------------------------------------------------------------------------- /src/Spe/Core/Host/ScriptSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Host/ScriptSession.cs -------------------------------------------------------------------------------- /src/Spe/Core/Host/ScriptSessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Host/ScriptSessionManager.cs -------------------------------------------------------------------------------- /src/Spe/Core/Host/ScriptingHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Host/ScriptingHost.cs -------------------------------------------------------------------------------- /src/Spe/Core/Host/ScriptingHostPrivateData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Host/ScriptingHostPrivateData.cs -------------------------------------------------------------------------------- /src/Spe/Core/Host/ScriptingHostRawUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Host/ScriptingHostRawUserInterface.cs -------------------------------------------------------------------------------- /src/Spe/Core/Host/ScriptingHostUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Host/ScriptingHostUserInterface.cs -------------------------------------------------------------------------------- /src/Spe/Core/Host/SpeSitecorePowerShellSnapIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Host/SpeSitecorePowerShellSnapIn.cs -------------------------------------------------------------------------------- /src/Spe/Core/Modules/IntegrationPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Modules/IntegrationPoint.cs -------------------------------------------------------------------------------- /src/Spe/Core/Modules/IntegrationPoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Modules/IntegrationPoints.cs -------------------------------------------------------------------------------- /src/Spe/Core/Modules/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Modules/Module.cs -------------------------------------------------------------------------------- /src/Spe/Core/Modules/ModuleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Modules/ModuleManager.cs -------------------------------------------------------------------------------- /src/Spe/Core/Modules/ModuleMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Modules/ModuleMonitor.cs -------------------------------------------------------------------------------- /src/Spe/Core/Processors/RewriteUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Processors/RewriteUrl.cs -------------------------------------------------------------------------------- /src/Spe/Core/Provider/ItemContentReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Provider/ItemContentReader.cs -------------------------------------------------------------------------------- /src/Spe/Core/Provider/ItemContentReaderWriterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Provider/ItemContentReaderWriterBase.cs -------------------------------------------------------------------------------- /src/Spe/Core/Provider/ItemContentWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Provider/ItemContentWriter.cs -------------------------------------------------------------------------------- /src/Spe/Core/Provider/PsSitecoreItemProvider.Content.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Provider/PsSitecoreItemProvider.Content.cs -------------------------------------------------------------------------------- /src/Spe/Core/Provider/PsSitecoreItemProvider.Maintenance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Provider/PsSitecoreItemProvider.Maintenance.cs -------------------------------------------------------------------------------- /src/Spe/Core/Provider/PsSitecoreItemProvider.PathHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Provider/PsSitecoreItemProvider.PathHandling.cs -------------------------------------------------------------------------------- /src/Spe/Core/Provider/PsSitecoreItemProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Provider/PsSitecoreItemProvider.cs -------------------------------------------------------------------------------- /src/Spe/Core/Provider/PsSitecoreItemProvider5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Provider/PsSitecoreItemProvider5.cs -------------------------------------------------------------------------------- /src/Spe/Core/Provider/PsSitecoreItemProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Provider/PsSitecoreItemProviderFactory.cs -------------------------------------------------------------------------------- /src/Spe/Core/Rules/PowerShellDelegatedAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Rules/PowerShellDelegatedAccess.cs -------------------------------------------------------------------------------- /src/Spe/Core/Rules/PowerShellExperienceButtonChromeName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Rules/PowerShellExperienceButtonChromeName.cs -------------------------------------------------------------------------------- /src/Spe/Core/Rules/PowerShellExperienceButtonChromeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Rules/PowerShellExperienceButtonChromeType.cs -------------------------------------------------------------------------------- /src/Spe/Core/Rules/PowerShellIseSelectionLength.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Rules/PowerShellIseSelectionLength.cs -------------------------------------------------------------------------------- /src/Spe/Core/Rules/PowerShellIseSessionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Rules/PowerShellIseSessionState.cs -------------------------------------------------------------------------------- /src/Spe/Core/Rules/PowerShellListViewNameMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Rules/PowerShellListViewNameMatch.cs -------------------------------------------------------------------------------- /src/Spe/Core/Rules/PowerShellSessionExists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Rules/PowerShellSessionExists.cs -------------------------------------------------------------------------------- /src/Spe/Core/Rules/PowerShellSessionExistsWithVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Rules/PowerShellSessionExistsWithVariable.cs -------------------------------------------------------------------------------- /src/Spe/Core/Rules/ScriptResultBoolValueCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Rules/ScriptResultBoolValueCondition.cs -------------------------------------------------------------------------------- /src/Spe/Core/Rules/ScriptResultStringValueCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Rules/ScriptResultStringValueCondition.cs -------------------------------------------------------------------------------- /src/Spe/Core/Rules/SitecoreConfigIntSettingValueCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Rules/SitecoreConfigIntSettingValueCondition.cs -------------------------------------------------------------------------------- /src/Spe/Core/Rules/SitecoreConfigSettingValueCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Rules/SitecoreConfigSettingValueCondition.cs -------------------------------------------------------------------------------- /src/Spe/Core/Rules/WebConfigIntSettingValueCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Rules/WebConfigIntSettingValueCondition.cs -------------------------------------------------------------------------------- /src/Spe/Core/Rules/WebConfigSettingValueCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Rules/WebConfigSettingValueCondition.cs -------------------------------------------------------------------------------- /src/Spe/Core/Serialization/PresetFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Serialization/PresetFactory.cs -------------------------------------------------------------------------------- /src/Spe/Core/Serialization/PresetWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Serialization/PresetWorker.cs -------------------------------------------------------------------------------- /src/Spe/Core/Serialization/SingleEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Serialization/SingleEntry.cs -------------------------------------------------------------------------------- /src/Spe/Core/Settings/ApplicationNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Settings/ApplicationNames.cs -------------------------------------------------------------------------------- /src/Spe/Core/Settings/ApplicationSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Settings/ApplicationSettings.cs -------------------------------------------------------------------------------- /src/Spe/Core/Settings/Authorization/AuthCacheEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Settings/Authorization/AuthCacheEntry.cs -------------------------------------------------------------------------------- /src/Spe/Core/Settings/Authorization/AuthorizationEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Settings/Authorization/AuthorizationEntry.cs -------------------------------------------------------------------------------- /src/Spe/Core/Settings/Authorization/ElevateSessionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Settings/Authorization/ElevateSessionState.cs -------------------------------------------------------------------------------- /src/Spe/Core/Settings/Authorization/WebServiceSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Settings/Authorization/WebServiceSettings.cs -------------------------------------------------------------------------------- /src/Spe/Core/Settings/DelegatedAccessManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Settings/DelegatedAccessManager.cs -------------------------------------------------------------------------------- /src/Spe/Core/Settings/FieldNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Settings/FieldNames.cs -------------------------------------------------------------------------------- /src/Spe/Core/Settings/PredefinedVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Settings/PredefinedVariables.cs -------------------------------------------------------------------------------- /src/Spe/Core/Settings/RenamedCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Settings/RenamedCommands.cs -------------------------------------------------------------------------------- /src/Spe/Core/Settings/StringTokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Settings/StringTokens.cs -------------------------------------------------------------------------------- /src/Spe/Core/Settings/TypeAccelerators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Settings/TypeAccelerators.cs -------------------------------------------------------------------------------- /src/Spe/Core/Utility/AnonymousTypeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Utility/AnonymousTypeUtils.cs -------------------------------------------------------------------------------- /src/Spe/Core/Utility/PathUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Utility/PathUtilities.cs -------------------------------------------------------------------------------- /src/Spe/Core/Utility/RulesUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Utility/RulesUtils.cs -------------------------------------------------------------------------------- /src/Spe/Core/Utility/SpeTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Utility/SpeTimer.cs -------------------------------------------------------------------------------- /src/Spe/Core/Utility/StreamUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Utility/StreamUtils.cs -------------------------------------------------------------------------------- /src/Spe/Core/Utility/TemplateUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Utility/TemplateUtils.cs -------------------------------------------------------------------------------- /src/Spe/Core/Utility/WildcardUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Utility/WildcardUtils.cs -------------------------------------------------------------------------------- /src/Spe/Core/Utility/ZipUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Utility/ZipUtils.cs -------------------------------------------------------------------------------- /src/Spe/Core/Validation/AutocompleteSetAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Validation/AutocompleteSetAttribute.cs -------------------------------------------------------------------------------- /src/Spe/Core/Validation/MiscAutocompleteSets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/Validation/MiscAutocompleteSets.cs -------------------------------------------------------------------------------- /src/Spe/Core/VersionDecoupling/CurrentVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/VersionDecoupling/CurrentVersion.cs -------------------------------------------------------------------------------- /src/Spe/Core/VersionDecoupling/SitecoreVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/VersionDecoupling/SitecoreVersion.cs -------------------------------------------------------------------------------- /src/Spe/Core/VersionDecoupling/TypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Core/VersionDecoupling/TypeResolver.cs -------------------------------------------------------------------------------- /src/Spe/Integrations/Gutters/GutterStatusRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Integrations/Gutters/GutterStatusRenderer.cs -------------------------------------------------------------------------------- /src/Spe/Integrations/Install/AttributesContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Integrations/Install/AttributesContainer.cs -------------------------------------------------------------------------------- /src/Spe/Integrations/Install/ScriptPostStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Integrations/Install/ScriptPostStep.cs -------------------------------------------------------------------------------- /src/Spe/Integrations/Pipelines/AssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Integrations/Pipelines/AssemblyResolver.cs -------------------------------------------------------------------------------- /src/Spe/Integrations/Pipelines/ContentEditorWarningScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Integrations/Pipelines/ContentEditorWarningScript.cs -------------------------------------------------------------------------------- /src/Spe/Integrations/Pipelines/GetItemMasters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Integrations/Pipelines/GetItemMasters.cs -------------------------------------------------------------------------------- /src/Spe/Integrations/Pipelines/LoggedInScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Integrations/Pipelines/LoggedInScript.cs -------------------------------------------------------------------------------- /src/Spe/Integrations/Pipelines/LoggingInScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Integrations/Pipelines/LoggingInScript.cs -------------------------------------------------------------------------------- /src/Spe/Integrations/Pipelines/LogoutScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Integrations/Pipelines/LogoutScript.cs -------------------------------------------------------------------------------- /src/Spe/Integrations/Pipelines/PipelineProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Integrations/Pipelines/PipelineProcessor.cs -------------------------------------------------------------------------------- /src/Spe/Integrations/Processors/BaseScriptedDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Integrations/Processors/BaseScriptedDataSource.cs -------------------------------------------------------------------------------- /src/Spe/Integrations/Processors/ScriptedDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Integrations/Processors/ScriptedDataSource.cs -------------------------------------------------------------------------------- /src/Spe/Integrations/Processors/ScriptedRenderRendering.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Integrations/Processors/ScriptedRenderRendering.cs -------------------------------------------------------------------------------- /src/Spe/Integrations/Processors/SkipPowerShellScriptItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Integrations/Processors/SkipPowerShellScriptItems.cs -------------------------------------------------------------------------------- /src/Spe/Integrations/Tasks/ExecuteScriptTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Integrations/Tasks/ExecuteScriptTask.cs -------------------------------------------------------------------------------- /src/Spe/Integrations/Tasks/ScriptedItemEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Integrations/Tasks/ScriptedItemEventHandler.cs -------------------------------------------------------------------------------- /src/Spe/Integrations/Workflows/ScriptAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Integrations/Workflows/ScriptAction.cs -------------------------------------------------------------------------------- /src/Spe/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Spe/Properties/CustomDictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Properties/CustomDictionary.xml -------------------------------------------------------------------------------- /src/Spe/Properties/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Properties/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/Spe/Spe.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Spe.csproj -------------------------------------------------------------------------------- /src/Spe/Templates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Templates.cs -------------------------------------------------------------------------------- /src/Spe/Texts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Texts.cs -------------------------------------------------------------------------------- /src/Spe/Utility/DateConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Utility/DateConverter.cs -------------------------------------------------------------------------------- /src/Spe/Utility/UrlHandleWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Utility/UrlHandleWrapper.cs -------------------------------------------------------------------------------- /src/Spe/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/Version.cs -------------------------------------------------------------------------------- /src/Spe/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/packages.config -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Assets/Spe.dll-help.maml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Assets/Spe.dll-help.maml -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Assets/Splitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Assets/Splitter.png -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Assets/TabClose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Assets/TabClose.png -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Assets/spe-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Assets/spe-32.png -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Assets/version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Assets/version.html -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Assets/working.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Assets/working.gif -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Scripts/PsHSplitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Scripts/PsHSplitter.js -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Scripts/Runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Scripts/Runner.js -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Scripts/SpeShared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Scripts/SpeShared.js -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Scripts/ace/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Scripts/ace/ace.js -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Scripts/ace/ext-emmet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Scripts/ace/ext-emmet.js -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Scripts/ace/ext-split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Scripts/ace/ext-split.js -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Scripts/ace/snippets/text.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Scripts/c3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Scripts/c3.min.js -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Scripts/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Scripts/clipboard.min.js -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Scripts/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Scripts/console.js -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Scripts/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Scripts/d3.min.js -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Scripts/flexie.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Scripts/flexie.min.js -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Scripts/ise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Scripts/ise.js -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Scripts/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Scripts/jquery-ui.min.js -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Scripts/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Scripts/jquery.min.js -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Scripts/jquery.qtip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Scripts/jquery.qtip.js -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Scripts/listview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Scripts/listview.js -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Scripts/purl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Scripts/purl.js -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Scripts/reports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Scripts/reports.js -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Scripts/split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Scripts/split.js -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Scripts/token_tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Scripts/token_tooltip.js -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Scripts/typed.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Scripts/typed.min.js -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Scripts/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Scripts/validation.js -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Services/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Services/web.config -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Styles/Console.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Styles/Console.css -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Styles/Dialogs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Styles/Dialogs.css -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Styles/Gallery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Styles/Gallery.css -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Styles/IFrame.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Styles/IFrame.css -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Styles/ListView.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Styles/ListView.css -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Styles/Runner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Styles/Runner.css -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Styles/c3.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Styles/c3.min.css -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Styles/ise.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Styles/ise.css -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Styles/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Styles/jquery-ui.min.css -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/Styles/reports.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/Styles/reports.css -------------------------------------------------------------------------------- /src/Spe/sitecore modules/PowerShell/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/PowerShell/web.config -------------------------------------------------------------------------------- /src/Spe/sitecore modules/Shell/PowerShell/ConfirmChoice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/Shell/PowerShell/ConfirmChoice.xml -------------------------------------------------------------------------------- /src/Spe/sitecore modules/Shell/PowerShell/ContextGallery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/Shell/PowerShell/ContextGallery.xml -------------------------------------------------------------------------------- /src/Spe/sitecore modules/Shell/PowerShell/DownloadFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/Shell/PowerShell/DownloadFile.xml -------------------------------------------------------------------------------- /src/Spe/sitecore modules/Shell/PowerShell/MruGallery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/Shell/PowerShell/MruGallery.xml -------------------------------------------------------------------------------- /src/Spe/sitecore modules/Shell/PowerShell/PowerShellIse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/Shell/PowerShell/PowerShellIse.xml -------------------------------------------------------------------------------- /src/Spe/sitecore modules/Shell/PowerShell/PsHSplitter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/Shell/PowerShell/PsHSplitter.xml -------------------------------------------------------------------------------- /src/Spe/sitecore modules/Shell/PowerShell/UserGallery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore modules/Shell/PowerShell/UserGallery.xml -------------------------------------------------------------------------------- /src/Spe/sitecore modules/items/core/items.core.spe.dat.tmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Spe/sitecore modules/items/master/items.master.spe.dat.tmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Spe/sitecore modules/items/web/items.web.spe.dat.tmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Spe/sitecore/admin/PowerShell.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore/admin/PowerShell.aspx -------------------------------------------------------------------------------- /src/Spe/sitecore/shell/Themes/Standard/PowerShell.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/Spe/sitecore/shell/Themes/Standard/PowerShell.zip -------------------------------------------------------------------------------- /src/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/deploy.json -------------------------------------------------------------------------------- /src/deploy.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/deploy.targets -------------------------------------------------------------------------------- /src/deploy.user.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/src/deploy.user.json.sample -------------------------------------------------------------------------------- /translations/ExportTranslationCsv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/translations/ExportTranslationCsv.ps1 -------------------------------------------------------------------------------- /translations/ImportTranslationCsv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/translations/ImportTranslationCsv.ps1 -------------------------------------------------------------------------------- /translations/StripUntranslatedPhrases.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/translations/StripUntranslatedPhrases.ps1 -------------------------------------------------------------------------------- /translations/da/spe-translation-core-da.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /translations/da/spe-translation-core-da.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/translations/da/spe-translation-core-da.xml -------------------------------------------------------------------------------- /translations/da/spe-translation-master-da.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/translations/da/spe-translation-master-da.csv -------------------------------------------------------------------------------- /translations/da/spe-translation-master-da.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/translations/da/spe-translation-master-da.xml -------------------------------------------------------------------------------- /translations/da/spe-translation-scripts-master-da.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/translations/da/spe-translation-scripts-master-da.csv -------------------------------------------------------------------------------- /translations/da/spe-translation-scripts-master-da.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/translations/da/spe-translation-scripts-master-da.xml -------------------------------------------------------------------------------- /translations/da/spe-translation-ui-core-da.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/translations/da/spe-translation-ui-core-da.csv -------------------------------------------------------------------------------- /translations/da/spe-translation-ui-core-da.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/translations/da/spe-translation-ui-core-da.xml -------------------------------------------------------------------------------- /translations/da/spe-translation-ui-master-da.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /translations/da/spe-translation-ui-master-da.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/translations/da/spe-translation-ui-master-da.xml -------------------------------------------------------------------------------- /translations/de-de/spe-translation-core-de-de.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/translations/de-de/spe-translation-core-de-de.csv -------------------------------------------------------------------------------- /translations/de-de/spe-translation-core-de-de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/translations/de-de/spe-translation-core-de-de.xml -------------------------------------------------------------------------------- /translations/de-de/spe-translation-master-de-de.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/translations/de-de/spe-translation-master-de-de.csv -------------------------------------------------------------------------------- /translations/de-de/spe-translation-master-de-de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/translations/de-de/spe-translation-master-de-de.xml -------------------------------------------------------------------------------- /translations/de-de/spe-translation-scripts-master-de-de.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/translations/de-de/spe-translation-scripts-master-de-de.csv -------------------------------------------------------------------------------- /translations/de-de/spe-translation-scripts-master-de-de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/translations/de-de/spe-translation-scripts-master-de-de.xml -------------------------------------------------------------------------------- /translations/ja-jp/spe-translation-core-ja-JP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/translations/ja-jp/spe-translation-core-ja-JP.xml -------------------------------------------------------------------------------- /translations/ja-jp/spe-translation-master-ja-JP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/translations/ja-jp/spe-translation-master-ja-JP.xml -------------------------------------------------------------------------------- /translations/ja-jp/spe-translation-scripts-master-ja-jp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/translations/ja-jp/spe-translation-scripts-master-ja-jp.xml -------------------------------------------------------------------------------- /translations/zh-cn/spe-translation-core-zh-cn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/translations/zh-cn/spe-translation-core-zh-cn.xml -------------------------------------------------------------------------------- /translations/zh-cn/spe-translation-master-zh-cn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/translations/zh-cn/spe-translation-master-zh-cn.xml -------------------------------------------------------------------------------- /translations/zh-cn/spe-translation-scripts-master-zh-cn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/translations/zh-cn/spe-translation-scripts-master-zh-cn.xml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Console Colors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Console Colors.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Console Colors/Black.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Console Colors/Black.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Console Colors/Blue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Console Colors/Blue.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Console Colors/Cyan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Console Colors/Cyan.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Console Colors/Gray.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Console Colors/Gray.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Console Colors/Green.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Console Colors/Green.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Console Colors/Red.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Console Colors/Red.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Console Colors/White.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Console Colors/White.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Console Colors/Yellow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Console Colors/Yellow.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Delegated Access.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Delegated Access.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Fonts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Fonts.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Fonts/Cascadia Code.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Fonts/Cascadia Code.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Fonts/Consolas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Fonts/Consolas.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Fonts/Courier New.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Fonts/Courier New.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Fonts/Inconsolata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Fonts/Inconsolata.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Fonts/Lucida Console.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Fonts/Lucida Console.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Fonts/Monaco.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Fonts/Monaco.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Fonts/Source Code Pro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Fonts/Source Code Pro.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Fonts/monospace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Fonts/monospace.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Script Library.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Script Library.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Settings.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Settings/Console.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Settings/Console.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Settings/Context.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Settings/Context.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Settings/Default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Settings/Default.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Settings/ISE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Settings/ISE.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Snippets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Snippets.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Snippets/Dialogs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Snippets/Dialogs.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Snippets/Functions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Snippets/Functions.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Snippets/Reporting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Snippets/Reporting.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Snippets/Search.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Snippets/Search.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Module/PowerShell/Snippets/Statements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Module/PowerShell/Snippets/Statements.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Templates/Modules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Templates/Modules.yml -------------------------------------------------------------------------------- /unicorn/SPE/Core/Templates/Modules/PowerShell Console.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Core/Templates/Modules/PowerShell Console.yml -------------------------------------------------------------------------------- /unicorn/SPE/Roles/sitecore/PowerShell Extensions Remoting.yml: -------------------------------------------------------------------------------- 1 | --- 2 | Role: | 3 | sitecore\PowerShell Extensions Remoting 4 | -------------------------------------------------------------------------------- /unicorn/SPE/Rules/Definition/PowerShell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Rules/Definition/PowerShell.yml -------------------------------------------------------------------------------- /unicorn/SPE/Rules/Definition/PowerShell/Tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Rules/Definition/PowerShell/Tags.yml -------------------------------------------------------------------------------- /unicorn/SPE/Rules/Definition/PowerShell/Tags/Default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Rules/Definition/PowerShell/Tags/Default.yml -------------------------------------------------------------------------------- /unicorn/SPE/Rules/ISE Rules/PowerShell ISE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Rules/ISE Rules/PowerShell ISE.yml -------------------------------------------------------------------------------- /unicorn/SPE/Rules/ISE Rules/PowerShell ISE/Session State.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Rules/ISE Rules/PowerShell ISE/Session State.yml -------------------------------------------------------------------------------- /unicorn/SPE/Rules/ISE Rules/PowerShell ISE/Tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Rules/ISE Rules/PowerShell ISE/Tags.yml -------------------------------------------------------------------------------- /unicorn/SPE/Rules/ISE Rules/PowerShell ISE/Tags/Default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Rules/ISE Rules/PowerShell ISE/Tags/Default.yml -------------------------------------------------------------------------------- /unicorn/SPE/Rules/ISE Rules/PowerShell ISE/Visibility.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Rules/ISE Rules/PowerShell ISE/Visibility.yml -------------------------------------------------------------------------------- /unicorn/SPE/Rules/ISE Tags/PowerShell ISE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Rules/ISE Tags/PowerShell ISE.yml -------------------------------------------------------------------------------- /unicorn/SPE/Rules/ISE Tags/PowerShell ISE/Visibility.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Rules/ISE Tags/PowerShell ISE/Visibility.yml -------------------------------------------------------------------------------- /unicorn/SPE/Rules/Rules/PowerShell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Rules/Rules/PowerShell.yml -------------------------------------------------------------------------------- /unicorn/SPE/Rules/Rules/PowerShell/Tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Rules/Rules/PowerShell/Tags.yml -------------------------------------------------------------------------------- /unicorn/SPE/Rules/Rules/PowerShell/Tags/Default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Rules/Rules/PowerShell/Tags/Default.yml -------------------------------------------------------------------------------- /unicorn/SPE/Rules/Rules/PowerShell/Visibility.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Rules/Rules/PowerShell/Visibility.yml -------------------------------------------------------------------------------- /unicorn/SPE/Rules/Security Rules/PowerShell Security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Rules/Security Rules/PowerShell Security.yml -------------------------------------------------------------------------------- /unicorn/SPE/Rules/System Rules/PowerShell System.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Rules/System Rules/PowerShell System.yml -------------------------------------------------------------------------------- /unicorn/SPE/Rules/System Rules/PowerShell System/Tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Rules/System Rules/PowerShell System/Tags.yml -------------------------------------------------------------------------------- /unicorn/SPE/Rules/Tags/PowerShell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Rules/Tags/PowerShell.yml -------------------------------------------------------------------------------- /unicorn/SPE/Rules/Tags/PowerShell/Visibility.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Rules/Tags/PowerShell/Visibility.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Core.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Core.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Core/Platform.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Core/Platform.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Core/Platform/Content Editor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Core/Platform/Content Editor.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Core/Platform/Development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Core/Platform/Development.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Core/Platform/Functions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Core/Platform/Functions.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Core/Platform/Internal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Core/Platform/Internal.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Core/Platform/Reusable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Core/Platform/Reusable.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Core/Platform/Toolbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Core/Platform/Toolbox.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Core/Platform/Upgrade.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Core/Platform/Upgrade.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Core/X-UnitTests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Core/X-UnitTests.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Core/X-UnitTests/Platform.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Core/X-UnitTests/Platform.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Extensions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Extensions.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Maintenance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Maintenance.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Maintenance/Index On Demand.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Maintenance/Index On Demand.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Maintenance/Task Management.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Maintenance/Task Management.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Reporting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Reporting.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Reporting/Content Reports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Reporting/Content Reports.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Samples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Samples.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Samples/License Expiration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Samples/License Expiration.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Samples/Training Modules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Samples/Training Modules.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Tools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Tools.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Tools/Copy Renderings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Tools/Copy Renderings.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Tools/Data Management.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Tools/Data Management.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Tools/Package Generator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Tools/Package Generator.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Tools/Security Management.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Tools/Security Management.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Training.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Training.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Training/Content Editor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Training/Content Editor.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Training/Misc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Training/Misc.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Training/Misc/Datasources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Training/Misc/Datasources.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Training/Misc/Dialogs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Training/Misc/Dialogs.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Training/Misc/Dialogs/Simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Training/Misc/Dialogs/Simple.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Training/Misc/Events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Training/Misc/Events.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Training/Misc/Pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Training/Misc/Pipelines.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Training/Misc/Toolbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Training/Misc/Toolbox.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Training/Reporting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Training/Reporting.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Training/Reporting/Advanced.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Training/Reporting/Advanced.yml -------------------------------------------------------------------------------- /unicorn/SPE/Scripts/SPE/SPE/Training/Reporting/Simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Scripts/SPE/SPE/Training/Reporting/Simple.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Applications/PowerShell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Applications/PowerShell.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Applications/PowerShell/PowerShell Runner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Applications/PowerShell/PowerShell Runner.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Applications/PowerShell/PowerShellIse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Applications/PowerShell/PowerShellIse.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Applications/PowerShell/PowerShellReports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Applications/PowerShell/PowerShellReports.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Content Editor Console/PowerShell Console.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Content Editor Console/PowerShell Console.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Content Editor ISE/Edit Script.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Content Editor ISE/Edit Script.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/A.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/A.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/C.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/C.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/D.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/D.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/D/Documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/D/Documentation.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/D/Done.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/D/Done.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/E.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/E.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/F.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/F.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/I.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/I.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/I/ID b0b.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/I/ID b0b.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/I/Invert selection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/I/Invert selection.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/L.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/L.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/L/Location b0b.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/L/Location b0b.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/M.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/M.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/N.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/N.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/O.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/O.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/O/Open Script.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/O/Open Script.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/O/Operation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/O/Operation.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/P.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/P.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/P/Please wait 0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/P/Please wait 0.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/P/Progress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/P/Progress.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/R.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/R.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/R/Recent Users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/R/Recent Users.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/R/Running script.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/R/Running script.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/R/remaining.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/R/remaining.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/S.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/S.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/S/Script defined 0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/S/Script defined 0.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/S/Script parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/S/Script parameters.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/S/Show copyright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/S/Show copyright.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/S/Single execution.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/S/Single execution.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/S/Size.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/S/Size.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/S/Status.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/S/Status.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/T.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/T.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/T/Time remaining.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/T/Time remaining.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/U.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/U.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/U/Untitled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/U/Untitled.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/U/User b0b.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/U/User b0b.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/U/Username.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/U/Username.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/V.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/V.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/W.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/W.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/W/Working.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/W/Working.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/X.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/X.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Dictionary/PowerShell/Y.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Dictionary/PowerShell/Y.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Launchpad ISE/PowerShell ISE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Launchpad ISE/PowerShell ISE.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Launchpad Reports/PowerShell Reports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Launchpad Reports/PowerShell Reports.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Layouts/PowerShell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Layouts/PowerShell.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Layouts/PowerShell/PowerShell Console.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Layouts/PowerShell/PowerShell Console.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Layouts/PowerShell/PowerShell ISE Sheer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Layouts/PowerShell/PowerShell ISE Sheer.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Layouts/PowerShell/PowerShell ListView.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Layouts/PowerShell/PowerShell ListView.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Layouts/PowerShell/PowerShell Reports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Layouts/PowerShell/PowerShell Reports.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Layouts/PowerShell/PowerShell Runner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Layouts/PowerShell/PowerShell Runner.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Start Menu Console/PowerShell Console.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Start Menu Console/PowerShell Console.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Start Menu ISE/PowerShell ISE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Start Menu ISE/PowerShell ISE.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Start Menu Reports/PowerShell Reports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Start Menu Reports/PowerShell Reports.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Start Menu Toolbox/PowerShell Toolbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Start Menu Toolbox/PowerShell Toolbox.yml -------------------------------------------------------------------------------- /unicorn/SPE/UI/Tasks/PowerShellScriptCommand.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/UI/Tasks/PowerShellScriptCommand.yml -------------------------------------------------------------------------------- /unicorn/SPE/Users/sitecore/PowerShellExtensionsAPI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitecorePowerShell/Console/HEAD/unicorn/SPE/Users/sitecore/PowerShellExtensionsAPI.yml --------------------------------------------------------------------------------