Main public logs
Appearance
Combined display of all available logs of wikiNonStop. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 07:51, 23 July 2026 Majestix talk contribs created page Test Powershell (Created page with "<syntaxhighlight lang="powershell"> Function Get-FileName($initialDirectory) { [System.Reflection.Assembly]::LoadWithPartialName("System.windows.forms") | Out-Null $OpenFileDialog = New-Object System.Windows.Forms.OpenFileDialog $OpenFileDialog.initialDirectory = $initialDirectory $OpenFileDialog.filter = "All bz2 files (*.bz2)| *.bz2" $OpenFileDialog.ShowDialog() | Out-Null $OpenFileDialog.filename } #end function Get-FileName # *** Script MAIN *** Write-Ho...")