mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 12:34:25 +01:00
16 lines
297 B
PowerShell
16 lines
297 B
PowerShell
|
<#
|
|||
|
.SYNOPSIS
|
|||
|
Launches the 3D-Viewer app
|
|||
|
.DESCRIPTION
|
|||
|
This script launches the 3D-Viewer application.
|
|||
|
.EXAMPLE
|
|||
|
PS> ./open-three-d-viewer
|
|||
|
.NOTES
|
|||
|
Author: Markus Fleschutz · License: CC0
|
|||
|
.LINK
|
|||
|
https://github.com/fleschutz/PowerShell
|
|||
|
#>
|
|||
|
|
|||
|
Start-Process com.microsoft.3dviewer:
|
|||
|
exit 0 # success
|