This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Function Export-SonarQubeProject { | |
<# | |
.DESCRIPTION | |
Export projects from SonarQube into a .CSV (hence after Excel .XSLX file) | |
Script takes care of retrieving up to 10000 hits iteratively for your search criteria. And will warn if you have over 10000 hits which is SonarQube's limitation. | |
You can adapt the default parameters below for easy usage. In the 'Process' section there are parameters for more or less filtering on SonarQube projects. | |
.EXAMPLE | |
Export by user's favorites. Make sure you run this .PS1 file so it is loaded into your session. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ishSession = New-IshSession -WsBaseUrl "https://example.com/ISHWS/" -PSCredential "Admin" | |
# Manually create a folder of type 'Other' and provide it as FolderPath parameter | |
$otherIshFolder = Get-IshFolder -IshSession $ishSession -FolderPath "\System Management\Editor Templates\Other\" # Please verify | |
# Below code creates an empty text file and creates your initial Other content object | |
Set-Content -Path "$env:TEMP\empty.txt" -Value "Empty Text File, or not" -Force | |
$metadata = Set-IshMetadataField -IshSession $ishSession -Level Logical -Name FTITLE -Value "Empty Template" | | |
Set-IshMetadataField -IshSession $ishSession -Name "FAUTHOR" -Level Lng -ValueType Element -Value VUSERADMIN | | |
Set-IshMetadataField -IshSession $ishSession -Name "FSTATUS" -Level Lng -ValueType Element -Value VSTATUSDRAFT | |
Add-IshDocumentObj -IshSession $ishSession -IshFolder $otherIshFolder -IshType ISHTemplate -LogicalId ISHEDITORTEMPLATETXT -Metadata $metadata -Lng en -Edt "EDT-TEXT" -FilePath "$env:TEMP\empty.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# SDL Belgium/ddemeyer | |
# 20170329 | |
# | |
# POWERSHELL REMARK #1... | |
# If you get "...cannot be loaded because the execution of scripts is disabled on this system." | |
# Then you are running Restricted, so then execute as an Administrator | |
# Set-ExecutionPolicy unrestricted | |
# POWERSHELL REMARK #2... | |
# If you can't load the editor 'ise' and get a "Cannot resolve alias 'ise'..." message. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 20191016/ddemeyer | |
-- Not a set of beautiful queries but it at all works on all Microsoft SQLServer-based | |
-- databases of Tridion Docs Content Manager (= Knowledge Center Content | |
-- Manager = LiveContent Architect = Trisoft InfoShare). | |
-- | |
-- Note... | |
-- In all cases make sure your database jobs are running successfully to keep | |
-- BackgroundTaskService and EventMonitorService under control. Remember that a big consumer | |
-- is keep revisions around. | |
-- Last tested on 14/14.0.0 |