1166 lines
77 KiB
XML
1166 lines
77 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<F4SD-QuickAction-Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="F4SD-QuickAction-Configuration.xsd">
|
|
<QuickActions>
|
|
<QuickAction-Local-Script InformationClass="Computer" Name="Edit AD computer object" Id="92FC7E6A-FD2C-4DAD-90F5-02C39D0F0D0B" Section="Favourites" Params="-Name "%DeviceName.Value%" -DistinguishedName "%ad-dn-computer.Value%"" StartWithAlternateCredentials="true" RunImmediate="true" CheckFilePath="%System%\dsa.msc">
|
|
<Name Lang="DE">AD Computer Objekt bearbeiten</Name>
|
|
<Description Lang="EN">Opens Active Directory to edit the current selected computer.</Description>
|
|
<Description Lang="DE">Öffnet das Active Directory um den derzeit ausgewählten Computer zu bearbeiten.</Description>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires information about the "Computer" and the file "%System%\dsa.msc" must exist on your device. For this purpose install the RSAT tools.</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Um diese Quick Action verwenden zu können werden Informationen über den "Computer" benötigt und der Datei "%System%\dsa.msc" muss auf ihrem Gerät vorliegen. Installieren Sie hierzu die RSAT Tools.</AlternativeDescription>
|
|
<Icon IconType="intern" Name="misc_computer" />
|
|
<Script>
|
|

|
|
param(
|
|
[string]$Name = "",
|
|
[string]$DistinguishedName = ""
|
|
)
|
|

|
|
#define domain controller, if needed. If not comment this line
|
|
# Format: dom1:dc1|dom2:dc2|...
|
|
# all domains and DCs shoould be FQDN
|
|
# $listDCs = "dom1.intra:dc01.dom1.intra|dom2.local:dc2.dom2.local"
|
|

|
|
Add-Type -AssemblyName PresentationFramework
|
|

|
|
# check if ad user & computer console is installed
|
|
if(![System.IO.File]::Exists("$env:windir\System32\dsa.msc")){
|
|
$nul = [System.Windows.MessageBox]::Show("You do not have installed the 'active directory users and computers' console.`nPlease install the corresponding RSAT tools on our local machine (dsa.mmc).","Nexthink for ServiceDesk remote tool error", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Error)
|
|
exit 1
|
|
}
|
|

|
|
# check, if the distinguished name is correct
|
|
$pos = $DistinguishedName.IndexOf(",DC=")
|
|
if ( (!$DistinguishedName.StartsWith("CN=")) -or ($pos -lt 0) ) {
|
|
$nul = [System.Windows.MessageBox]::Show("The given distinguished name is not valid:`n`n$DistinguishedName","F4SD Cockpit Quick Action", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Error)
|
|
exit 1
|
|
}
|
|

|
|
$strDC = $DistinguishedName.Remove(0,$pos)
|
|
$strDC = $strDC.Replace(",DC=", "|")
|
|
$arrDC = $strDC.Split("|")
|
|
$dnsDomain = ""
|
|
foreach ($dce in $arrDC) {
|
|
if ($dnsDomain -ne "") {
|
|
$dnsDomain = $dnsDomain + "."
|
|
}
|
|
$dnsDomain = $dnsDomain + $dce.ToLowerInvariant()
|
|
}
|
|
if (![string]::IsNullOrEmpty($listDCs)) {
|
|
}
|
|
$relativeName = $DistinguishedName.Substring(0, $pos)
|
|

|
|
$serverDC = ""
|
|
if (-not [string]::IsNullOrEmpty($listDCs)) {
|
|
$arrDoms = $listDCs.Split('|')
|
|
foreach ($itemDom in $arrDoms) {
|
|
$strItem = $itemDom.Trim()
|
|
if (-not [string]::IsNullOrEmpty($strItem)) {
|
|
$arrItemDom = $strItem.Split(':')
|
|
if ($arrItemDom.Count -eq 2) {
|
|
if ($arrItemDom[0].Trim().ToUpperInvariant() -eq $dnsDomain) {
|
|
$serverDC = $arrItemDom[1].Trim()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|

|
|
$relativeName = $relativeName.Replace("/","\/");
|
|

|
|
if ([string]::IsNullOrEmpty($serverDC)) {
|
|
dsa.msc /DOMAIN=$dnsDomain /RDN="$relativeName"
|
|
}
|
|
else {
|
|
dsa.msc /DOMAIN=$dnsDomain /SERVER=$serverDC /RDN="$relativeName"
|
|
}
|
|
</Script>
|
|
</QuickAction-Local-Script>
|
|
<QuickAction-Local-Script InformationClass="User" Name="Edit AD user object" Id="351BABF1-1E98-42DF-BF5F-F2E6F280330D" Section="Favourites" Params="-Name "%UserFullName.Value%" -DistinguishedName "%ad-dn-User.Value%"" StartWithAlternateCredentials="true" RunImmediate="true" CheckFilePath="%System%\dsa.msc">
|
|
<Name Lang="DE">AD User Objekt bearbeiten</Name>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires information about the "User" and the file "%System%\dsa.msc" must exist on your device. For this purpose install the RSAT tools.</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Um diese Quick Action verwenden zu können werden Informationen über den "User" benötigt und der Datei "%System%\dsa.msc" muss auf ihrem Gerät vorliegen. Installieren Sie hierzu die RSAT Tools.</AlternativeDescription>
|
|
<Icon IconType="intern" Name="misc_ticket" />
|
|
<Script>
|
|

|
|
param(
|
|
[string]$Name = "",
|
|
[string]$DistinguishedName = ""
|
|
)
|
|

|
|
#define domain controller, if needed. If not comment this line
|
|
# Format: dom1:dc1|dom2:dc2|...
|
|
# all domains and DCs shoould be FQDN
|
|
# $listDCs = "dom1.intra:dc01.dom1.intra|dom2.local:dc2.dom2.local"
|
|

|
|
Add-Type -AssemblyName PresentationFramework
|
|

|
|
# check if ad user & computer console is installed
|
|
if(![System.IO.File]::Exists("$env:windir\System32\dsa.msc")){
|
|
$nul = [System.Windows.MessageBox]::Show("You do not have installed the 'active directory users and computers' console.`nPlease install the corresponding RSAT tools on our local machine (dsa.mmc).","Nexthink for ServiceDesk remote tool error", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Error)
|
|
exit 1
|
|
}
|
|

|
|
# check, if the distinguished name is correct
|
|
$pos = $DistinguishedName.IndexOf(",DC=")
|
|
if ( (!$DistinguishedName.StartsWith("CN=")) -or ($pos -lt 0) ) {
|
|
$nul = [System.Windows.MessageBox]::Show("The given distinguished name is not valid:`n`n$DistinguishedName","F4SD Cockpit Quick Action", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Error)
|
|
exit 1
|
|
}
|
|

|
|
$strDC = $DistinguishedName.Remove(0,$pos)
|
|
$strDC = $strDC.Replace(",DC=", "|")
|
|
$arrDC = $strDC.Split("|")
|
|
$dnsDomain = ""
|
|
foreach ($dce in $arrDC) {
|
|
if ($dnsDomain -ne "") {
|
|
$dnsDomain = $dnsDomain + "."
|
|
}
|
|
$dnsDomain = $dnsDomain + $dce.ToLowerInvariant()
|
|
}
|
|
if (![string]::IsNullOrEmpty($listDCs)) {
|
|
}
|
|
$relativeName = $DistinguishedName.Substring(0, $pos)
|
|

|
|
$serverDC = ""
|
|
if (-not [string]::IsNullOrEmpty($listDCs)) {
|
|
$arrDoms = $listDCs.Split('|')
|
|
foreach ($itemDom in $arrDoms) {
|
|
$strItem = $itemDom.Trim()
|
|
if (-not [string]::IsNullOrEmpty($strItem)) {
|
|
$arrItemDom = $strItem.Split(':')
|
|
if ($arrItemDom.Count -eq 2) {
|
|
if ($arrItemDom[0].Trim().ToUpperInvariant() -eq $dnsDomain) {
|
|
$serverDC = $arrItemDom[1].Trim()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|

|
|

|
|
$relativeName = $relativeName.Replace("/","\/");
|
|

|
|
if ([string]::IsNullOrEmpty($serverDC)) {
|
|
dsa.msc /DOMAIN=$dnsDomain /RDN="$relativeName"
|
|
}
|
|
else {
|
|
dsa.msc /DOMAIN=$dnsDomain /SERVER=$serverDC /RDN="$relativeName"
|
|
}
|
|
</Script>
|
|
</QuickAction-Local-Script>
|
|
<QuickAction-Local-WebRequest InformationClass="User" Name="Open MS Teams chat (web)" RunImmediate="true" CheckNamedParameter="UserMail" Section="Communication" Id="78a5cf24-101a-4974-96a5-6a764e3a9eff">
|
|
<Name Lang="DE">Öffne MS Teams Chat (Web)</Name>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires information about the "User" and the users mail address.</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Um diese Quick Action verwenden zu können werden Informationen über den "User" und dessen E-Mail Adresse benötigt.</AlternativeDescription>
|
|
<Icon IconType="material" Name="ic_chat" />
|
|
<QueryString>https://teams.microsoft.com/l/chat/0/0?users=PARAM_UserMail</QueryString>
|
|
<QueryParameter Name="PARAM_UserMail" ParameterName="UserMail" />
|
|
</QuickAction-Local-WebRequest>
|
|
<QuickAction-Local-WebRequest InformationClass="User" Name="Open MS Teams chat" RunImmediate="true" CheckNamedParameter="UserMail" Section="Favourites" Id="49fdb777-0821-4eb0-a8ff-559cd6a6a307">
|
|
<Name Lang="DE">Öffne MS Teams Chat</Name>
|
|
<AlternativeDescription Lang="EN">
|
|

|
|
This Quick Action requires information about the "User" and the users mail address.
|
|
Further more the file "%LocalAppdata%\Microsoft\Teams\Update.exe" must exist on your device.
|
|
</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">
|
|

|
|
Um diese Quick Action verwenden zu können werden Informationen über den "User" und dessen E-Mail Adresse benötigt.
|
|
Außerdem muss der Datei "%LocalAppdata%\Microsoft\Teams\Update.exe"auf ihrem Gerät vorliegen.
|
|
</AlternativeDescription>
|
|
<Icon IconType="material" Name="ic_chat" />
|
|
<QueryString>msteams:/l/chat/0/0?users=PARAM_UserMail</QueryString>
|
|
<QueryParameter Name="PARAM_UserMail" ParameterName="UserMail" />
|
|
</QuickAction-Local-WebRequest>
|
|
<QuickAction-Local-Script InformationClass="User" Name="User AD Groups Test" Params="-Name "%UserAccount.Value%"" Section="TestSection" Id="c04dda3a-5d5c-495f-bb98-65e8215c9606">
|
|
<Name Lang="DE">User AD Gruppe Test</Name>
|
|
<Icon IconType="material" Name="ic_group" />
|
|
<Script>
|
|

|
|
param(
|
|
$Name = "SD181"
|
|
)
|
|

|
|
try{
|
|

|
|
$values = Get-ADPrincipalGroupMembership -Identity "$Name" | Select-Object Name
|
|

|
|
}catch{
|
|

|
|
$values = "No AD Groups found."
|
|

|
|
}finally{
|
|

|
|
$values | ConvertTo-Json
|
|

|
|
}
|
|
</Script>
|
|
</QuickAction-Local-Script>
|
|
<QuickAction-Local-Script InformationClass="User" Name="Open Support Website" Params="-Manufacturer "%Manufacturer.Value%" -SerialNumber "%SerialNumber.Value%"" RunImmediate="true" Id="ada93ada-6183-4ea0-b2ec-6b42f0b5eb50">
|
|
<Name Lang="DE">Support Webseite öffnen</Name>
|
|
<Description Lang="EN">Opens support website of Dell or Lenovo.</Description>
|
|
<Description Lang="DE">Öffnet die Support Webseite von Dell oder Lenovo.</Description>
|
|
<Icon IconType="material" Name="ic_open_in_browser" />
|
|
<Script>
|
|

|
|
param(
|
|
$Manufacturer,
|
|
$SerialNumber
|
|
)
|
|

|
|
function Invoke-Main(){
|
|
try{
|
|
if($Manufacturer -match 'LENOVO'){
|
|
$Lenovo = "https://pcsupport.lenovo.com/de/de/products/" + $SerialNumber
|
|
start-process $Lenovo
|
|
}elseif($Manufacturer -match 'Dell Inc.'){
|
|
$Dell = "https://www.dell.com/support/home/de-de/product-support/servicetag/" + $SerialNumber + "/overview"
|
|
start-process $Dell
|
|
}else{
|
|
$program = $Manufacturer
|
|
}
|
|
}catch{
|
|
Format-ScriptOutput -resultcode 1 -errorcode 1 -errorDescription "Unspecified Error"
|
|
exitTeamv
|
|
}finally{
|
|
if($program){
|
|
Format-ScriptOutput -resultcode 0 -errorcode 0 -errorDescription ""
|
|
}
|
|
}
|
|
}
|
|
function Format-ScriptOutput ($resultcode, $errorcode, $errorDescription, $program) {
|
|

|
|
$outPut = [PSCustomObject]@{
|
|
ResultCode = $resultcode
|
|
ErrorCode = $errorcode
|
|
ErrorDescription = $errorDescription
|
|
}
|
|

|
|
$outPut | ConvertTo-Json
|
|

|
|
}
|
|

|
|
Invoke-Main
|
|
</Script>
|
|
</QuickAction-Local-Script>
|
|
<QuickAction-Local-Cmd InformationClass="Computer" Name="Start TeamViewer session" Cmd="%ProgramFiles%\TeamViewer\TeamViewer.exe" Params="-i %TeamViewerId.Value%" DontUseShell="false" StartWithAlternateCredentials="false" RunImmediate="true" CheckFilePath="%ProgramFiles%\TeamViewer\TeamViewer.exe" CheckNamedParameter="TeamViewerId" Section="Favourites" Id="90a60556-17bf-4579-bbf9-cfe71f305942">
|
|
<Name Lang="DE">Starte TeamViewer Sitzung</Name>
|
|
<AlternativeDescription Lang="EN">
|
|

|
|
This Quick Action requires information about the "Computer" and the users TeamViewer ID.
|
|
Further more the file "%ProgramFiles%\TeamViewer\TeamViewer.exe" must exist on your device.
|
|
</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">
|
|

|
|
Um diese Quick Action verwenden zu können werden Informationen über den "Computer" und dessen TeamViewer ID benötigt.
|
|
Außerdem muss die Datei "ProgramFiles%\TeamViewer\TeamViewer.exe" auf ihrem Gerät vorliegen.
|
|
</AlternativeDescription>
|
|
<Icon IconType="intern" Name="menuBar_remote" />
|
|
</QuickAction-Local-Cmd>
|
|
<!-- <QuickAction-Local-Cmd InformationClass="Computer" Name="Start FastViewer session" Cmd="C:\Users\km164\OneDrive - Consulting4IT GmbH\Desktop\C4IT_Fernwartung.exe" Params="/reAutoconnect:%DeviceName.Value%" DontUseShell="false" StartWithAlternateCredentials="false" RunImmediate="true" CheckFilePath="C:\Users\km164\OneDrive - Consulting4IT GmbH\Desktop\C4IT_Fernwartung.exe">
|
|
<Name Lang="DE">Starte FastViewer Sitzung</Name>
|
|
<Icon IconType="intern" Name="menuBar_remote" />
|
|
</QuickAction-Local-Cmd> -->
|
|
<QuickAction-Local-Cmd InformationClass="Computer" Name="Start remote control" Section="Communication" Cmd="%System%\mstsc.exe" Params="/v %DeviceName.Value%" DontUseShell="false" StartWithAlternateCredentials="true" RunImmediate="true" Id="9e49d2d9-a652-4702-a3fc-f74c880e45ae">
|
|
<Name Lang="DE">Fernzugriff starten</Name>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires information about the "Computer".</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Um diese Quick Action verwenden zu können werden Informationen über den "Computer" benötigt.</AlternativeDescription>
|
|
<Icon IconType="intern" Name="menuBar_remote" />
|
|
</QuickAction-Local-Cmd>
|
|
<QuickAction-Remote-User ScriptName="F4SD Clear Recycle Bin" Name="Clear recycle bin" InformationClass="User" Id="df66fd42-2506-4704-b987-6fc5379428b1">
|
|
<Name Lang="DE">Papierkorb aufräumen</Name>
|
|
<Description Lang="EN">Clears the recycle bin of the current selected user.</Description>
|
|
<Description Lang="DE">Leert den Papierkorb des derzeit ausgewählten Nutzers.</Description>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires information about the "User".</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Um diese Quick Action verwenden zu können werden Informationen über den "User" benötigt.</AlternativeDescription>
|
|
<Icon IconType="material" Name="ic_delete_forever" />
|
|
<QuickActionMeasures>
|
|
<QuickActionMeasure Name="Hard disk free" MeasureId="29" Display="BYTES">
|
|
<Name Lang="DE">Festplatten-Speicher frei</Name>
|
|
</QuickActionMeasure>
|
|
<QuickActionMeasure Name="System disk free" MeasureId="4" Display="BYTES">
|
|
<Name Lang="DE">Systempartition frei</Name>
|
|
</QuickActionMeasure>
|
|
</QuickActionMeasures>
|
|
</QuickAction-Remote-User>
|
|
<QuickAction-Remote-User ScriptName="F4SD Get Connected Printers" Name="Show connected printers" InformationClass="User" RunImmediate="true" Section="GetInfo" Id="6f9a92d6-f91e-46ed-b5b7-2b424d6647b6">
|
|
<Name Lang="DE">Zeige verbundene Drucker</Name>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires information about the "User".</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Um diese Quick Action verwenden zu können werden Informationen über den "User" benötigt.</AlternativeDescription>
|
|
<Icon IconType="material" Name="ic_print" />
|
|
</QuickAction-Remote-User>
|
|
<QuickAction-Remote-User ScriptName="F4SD Disk Cleanup" Name="Disk cleanup" InformationClass="User" Section="Favourites" Id="b8b0123b-39a7-4161-b9ba-6095712ec425">
|
|
<Name Lang="DE">Festplatte bereinigen</Name>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires information about the "User".</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Um diese Quick Action verwenden zu können werden Informationen über den "User" benötigt.</AlternativeDescription>
|
|
<Icon IconType="intern" Name="misc_tool" />
|
|
<QuickActionMeasures>
|
|
<QuickActionMeasure MeasureId="4" Display="BYTES" Name="System disk free">
|
|
<Name Lang="DE">Systempartition frei</Name>
|
|
</QuickActionMeasure>
|
|
<QuickActionMeasure MeasureId="29" Display="BYTES" Name="Hard disk free total">
|
|
<Name Lang="DE">Festplatten-Speicher frei gesamt</Name>
|
|
</QuickActionMeasure>
|
|
</QuickActionMeasures>
|
|
</QuickAction-Remote-User>
|
|
<QuickAction-Remote-User ScriptName="F4SD Start Empirum Polling" Name="Start Empirum polling" InformationClass="User" Id="2ad45364-9e05-4e12-bd10-6de1c812cf4e">
|
|
<Name Lang="DE">Empirum Polling starten</Name>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires information about the "User".</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Um diese Quick Action verwenden zu können werden Informationen über den "User" benötigt.</AlternativeDescription>
|
|
<Icon IconType="material" Name="ic_move_to_inbox" />
|
|
</QuickAction-Remote-User>
|
|
<QuickAction-Remote-User ScriptName="F4SD GP Update Force" Name="Update group policy" InformationClass="User" Id="993c1821-659a-44fc-b792-763271fd291b">
|
|
<Name Lang="DE">Gruppenrichtlinien updaten</Name>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires information about the "User".</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Um diese Quick Action verwenden zu können werden Informationen über den "User" benötigt.</AlternativeDescription>
|
|
<Icon IconType="intern" Name="lock_open" />
|
|
</QuickAction-Remote-User>
|
|
<QuickAction-Remote-User ScriptName="F4SD Get Power Schemas" Name="Return PowerSchemes" InformationClass="User" Section="GetInfo" Id="33049ed5-251c-460f-8b26-06516f890b70">
|
|
<Name Lang="DE">Energiemodi auslesen</Name>
|
|
<Description Lang="EN">Returns power settings.</Description>
|
|
<Description Lang="DE">Gibt Energie-Einstellungen aus.</Description>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires information about the "User".</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Um diese Quick Action verwenden zu können werden Informationen über den "User" benötigt.</AlternativeDescription>
|
|
<Icon IconType="material" Name="ic_battery_unknown" />
|
|
<ColumnOutputFormattings>
|
|
<ColumnOutputFormatting ValueName="EnergySettings" Translation="qa_energySettings" Name="Energy Settings">
|
|
<Name Lang="DE">Energiesparplan</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="MainsOperation" Translation="qa_energySettings" Name="Mains Operation">
|
|
<Name Lang="DE">Netzbetrieb</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="BatteryOperation" Translation="qa_energySettings" Name="Battery Operation">
|
|
<Name Lang="DE">Akkubetrieb</Name>
|
|
</ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
</QuickAction-Remote-User>
|
|
<QuickAction-Remote-User ScriptName="F4SD Registry öffnen" Name="Open Registry" InformationClass="User" Section="Sandbox" RunImmediate="true" Id="8d48840f-852d-449f-b56d-c50b5de17ce2">
|
|
<Name Lang="DE">Registrierungs-Editor öffnen</Name>
|
|
<Description Lang="EN">Starts the registry application.</Description>
|
|
<Description Lang="DE">Startet den Registrierungs-Editor.</Description>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires information about the "User".</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Um diese Quick Action verwenden zu können werden Informationen über den "User" benötigt.</AlternativeDescription>
|
|
<Icon IconType="intern" Name="misc_computer" />
|
|
</QuickAction-Remote-User>
|
|
<QuickAction-Remote-User ScriptName="F4SD Computerverwaltung öffnen" Name="Open Computer Management" InformationClass="User" Section="Sandbox" RunImmediate="true" Id="2f5846f5-4af5-4005-89d6-9deabc5c07f4">
|
|
<Name Lang="DE">Computerverwaltung öffnen</Name>
|
|
<Description Lang="EN">Starts the Computer Management application.</Description>
|
|
<Description Lang="DE">Startet die Computerverwaltung.</Description>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires information about the "User".</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Um diese Quick Action verwenden zu können werden Informationen über den "User" benötigt.</AlternativeDescription>
|
|
<Icon IconType="material" Name="ic_settings" />
|
|
</QuickAction-Remote-User>
|
|
<QuickAction-Remote-User ScriptName="F4SD Update Center öffnen" Name="Open Update Center" InformationClass="User" Section="Sandbox" Params="-Manufacturer "%Manufacturer.Value%"" Id="0eebef0d-47a8-43e3-adbc-498b90828d97">
|
|
<Name Lang="DE">Update Center öffnen</Name>
|
|
<Description Lang="EN">Starts the Update Center application of the manufacturer.</Description>
|
|
<Description Lang="DE">Startet das Update center des Herstellers.</Description>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires information about the "User".</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Um diese Quick Action verwenden zu können werden Informationen über den "User" benötigt.</AlternativeDescription>
|
|
<Icon IconType="intern" Name="misc_tool" />
|
|
</QuickAction-Remote-User>
|
|
<QuickAction-Remote-User ScriptName="F4SD Clear DNS Cache" Name="Clear DNS Cache" InformationClass="User" Section="ClearCache" Id="8262ff23-f755-4448-8fcb-2d8cce1b935b">
|
|
<Name Lang="DE">DNS Cache leeren</Name>
|
|
<Description Lang="EN">Clears cache from Domain-Name-System.</Description>
|
|
<Description Lang="DE">Leert den Cache des Domain-NameSystems.</Description>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires information about the "User".</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Um diese Quick Action verwenden zu können werden Informationen über den "User" benötigt.</AlternativeDescription>
|
|
<Icon IconType="material" Name="ic_dns" />
|
|
<ColumnOutputFormattings>
|
|
<ColumnOutputFormatting ValueName="RemovedEntries" Name="Removed Entries" Display="INTEGER">
|
|
<Name Lang="DE">Entfernte Einträge</Name>
|
|
</ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
</QuickAction-Remote-User>
|
|
<QuickAction-Remote-User ScriptName="F4SD Clear Teams Cache" Name="Clear Teams Cache" InformationClass="User" Section="ClearCache" Id="712a32ce-123d-4a3b-8df3-a917bf2e0ec5">
|
|
<Name Lang="DE">Teams Cache leeren</Name>
|
|
<Icon IconType="material" Name="ic_chat_bubble_outline" />
|
|
<ColumnOutputFormattings>
|
|
<ColumnOutputFormatting ValueName="FreedCache" Name="Cleared Cache" Display="BYTES">
|
|
<Name Lang="DE">Cache geleert</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="DeletedFiles" Name="Deleted Files" Display="INTEGER">
|
|
<Name Lang="DE">Dateien entfernt</Name>
|
|
</ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
</QuickAction-Remote-User>
|
|
<QuickAction-Remote-User ScriptName="F4SD Map Printer" Name="F4SD Map Printer" InformationClass="User" Section="Sandbox" Params="-PrinterUNCPath "%Printer%"" Id="7d19bb89-085f-4517-bb55-a47b5c07f425">
|
|
<Name Lang="DE">F4SD Drucker verbinden</Name>
|
|
<Icon IconType="material" Name="ic_delete_forever" />
|
|
<AdjustableParameters>
|
|
<AdjustableParameter-DropDown Name="Select Printer" ParameterName="Printer" Default="$null">
|
|
<Name Lang="DE">Wähle einen Drucker aus</Name>
|
|
<AdjustableParameter-DropDownValue Value="\\c4-dc04.c4it.intra\HP-Vertrieb">
|
|
<AdjustableParameter-DropDownDisplayValue Lang="DE">HP-Vertrieb</AdjustableParameter-DropDownDisplayValue>
|
|
</AdjustableParameter-DropDownValue>
|
|
<AdjustableParameter-DropDownValue Value="\\c4-dc04.c4it.intra\HP-Academy">
|
|
<AdjustableParameter-DropDownDisplayValue Lang="DE">HP-Academy</AdjustableParameter-DropDownDisplayValue>
|
|
</AdjustableParameter-DropDownValue>
|
|
<AdjustableParameter-DropDownValue Value="\\c4-dc04.c4it.intra\HP-Consulting">
|
|
<AdjustableParameter-DropDownDisplayValue Lang="DE">HP-Consulting</AdjustableParameter-DropDownDisplayValue>
|
|
</AdjustableParameter-DropDownValue>
|
|
</AdjustableParameter-DropDown>
|
|
</AdjustableParameters>
|
|
<ColumnOutputFormattings>
|
|
<ColumnOutputFormatting ValueName="Status" Name="Status">
|
|
<Name Lang="DE">Status</Name>
|
|
</ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
</QuickAction-Remote-User>
|
|
<QuickAction-Remote-User ScriptName="F4SD Remove-LoginFolderOnNetworkShare" Name="F4SD Remove-LoginFolderOnNetworkShare" InformationClass="User" Section="Sandbox" Id="537a6f41-13bf-4cb2-b599-1819a0c25f27">
|
|
<Name Lang="DE">Lösche Ordner vom Netzlaufwerk</Name>
|
|
<Icon IconType="material" Name="ic_delete_forever" />
|
|
<ColumnOutputFormattings>
|
|
<ColumnOutputFormatting ValueName="Status" Name="Status">
|
|
<Name Lang="DE">Status</Name>
|
|
</ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
</QuickAction-Remote-User>
|
|
<QuickAction-Remote-User ScriptName="F4SD Get-USBDevices" Name="F4SD Get-USBDevices" InformationClass="User" Section="Sandbox" Id="84be7c2f-96fc-44ba-aee2-573a4b6a6f62">
|
|
<Name Lang="DE">USB Geräte auslesen</Name>
|
|
<Icon IconType="material" Name="ic_delete_forever" />
|
|
<ColumnOutputFormattings>
|
|
<ColumnOutputFormatting ValueName="FriendlyName" Name="Name">
|
|
<Name Lang="DE">Name</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="Status" Name="Status">
|
|
<Name Lang="DE">Status</Name>
|
|
</ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
</QuickAction-Remote-User>
|
|
<QuickAction-Remote-User ScriptName="F4SD Clear Cache" Name="Clear Browser Cache" InformationClass="User" Section="ClearCache" Params="-WhichProgram "%WhichProgram%"" Id="4c551676-903e-4e5f-895f-960a4d2a5c26">
|
|
<Name Lang="DE">Browser Cache leeren</Name>
|
|
<Icon IconType="material" Name="ic_delete_forever" />
|
|
<AdjustableParameters>
|
|
<AdjustableParameter-DropDown Name="Select program" ParameterName="WhichProgram" Default="Chrome">
|
|
<Name Lang="DE">Wähle Programm aus</Name>
|
|
<AdjustableParameter-DropDownValue Value="Chrome">
|
|
<AdjustableParameter-DropDownDisplayValue Lang="EN">Google Chrome</AdjustableParameter-DropDownDisplayValue>
|
|
<AdjustableParameter-DropDownDisplayValue Lang="DE">Google Chrome</AdjustableParameter-DropDownDisplayValue>
|
|
</AdjustableParameter-DropDownValue>
|
|
<AdjustableParameter-DropDownValue Value="Edge">
|
|
<AdjustableParameter-DropDownDisplayValue Lang="EN">Microsoft Edge</AdjustableParameter-DropDownDisplayValue>
|
|
<AdjustableParameter-DropDownDisplayValue Lang="DE">Microsoft Edge</AdjustableParameter-DropDownDisplayValue>
|
|
</AdjustableParameter-DropDownValue>
|
|
</AdjustableParameter-DropDown>
|
|
</AdjustableParameters>
|
|
<ColumnOutputFormattings>
|
|
<ColumnOutputFormatting ValueName="FreedCache" Name="Cleared Cache" Display="BYTES">
|
|
<Name Lang="DE">Cache geleert</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="DeletedFiles" Name="Deleted Files" Display="INTEGER">
|
|
<Name Lang="DE">Dateien entfernt</Name>
|
|
</ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
</QuickAction-Remote-User>
|
|
<QuickAction-Remote-User ScriptName="F4SD Programm öffnen Test" Name="Remote Open Program Test" InformationClass="User" Section="Sandbox" Params="-OpenProgram "%OpenProgram%"" Id="060444a9-34b1-450c-9375-8ea53f286abe">
|
|
<Name Lang="DE">Remote Programm öffnen Test</Name>
|
|
<Icon IconType="intern" Name="misc_computer" />
|
|
<AdjustableParameters>
|
|
<AdjustableParameter-DropDown Name="OpenProgram" ParameterName="OpenProgram" Default="regedit.exe">
|
|
<AdjustableParameter-DropDownValue Value="regedit.exe">
|
|
<AdjustableParameter-DropDownDisplayValue Lang="EN">Registry Editor</AdjustableParameter-DropDownDisplayValue>
|
|
<AdjustableParameter-DropDownDisplayValue Lang="DE">Registrierungs-Editor</AdjustableParameter-DropDownDisplayValue>
|
|
</AdjustableParameter-DropDownValue>
|
|
<AdjustableParameter-DropDownValue Value="CompMgmtLauncher.exe">
|
|
<AdjustableParameter-DropDownDisplayValue Lang="EN">Computer Management</AdjustableParameter-DropDownDisplayValue>
|
|
<AdjustableParameter-DropDownDisplayValue Lang="DE">Computerverwaltung</AdjustableParameter-DropDownDisplayValue>
|
|
</AdjustableParameter-DropDownValue>
|
|
</AdjustableParameter-DropDown>
|
|
</AdjustableParameters>
|
|
</QuickAction-Remote-User>
|
|
<!-- <QuickAction-Remote-User ScriptName="Test OutPut 1 Domi" Name="OutPut Test 1" InformationClass="User" Section="Sandbox">
|
|
<Name Lang="DE">OutPut Test 1</Name>
|
|
<Icon IconType="material" Name="ic_looks_one"/>
|
|
<ColumnOutputFormattings>
|
|
<ColumnOutputFormatting ValueName="Titel" Name="Titel">
|
|
<Name Lang="DE">Titel</Name>
|
|
</ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
</QuickAction-Remote-User>
|
|
|
|
<QuickAction-Remote-User ScriptName="Test OutPut 2 Domi" Name="OutPut Test 2" InformationClass="User" Section="Sandbox">
|
|
<Name Lang="DE">OutPut Test 2</Name>
|
|
<Icon IconType="material" Name="ic_looks_one"/>
|
|
<ColumnOutputFormattings>
|
|
<ColumnOutputFormatting ValueName="Titel1" Name="Titel 1">
|
|
<Name Lang="DE">Titel 1</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="Titel2" Name="Titel 2">
|
|
<Name Lang="DE">Titel 2</Name>
|
|
</ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
</QuickAction-Remote-User>
|
|
|
|
<QuickAction-Remote-User ScriptName="Test OutPut 3 Domi" Name="OutPut Test 3" InformationClass="User" Section="Sandbox">
|
|
<Name Lang="DE">OutPut Test 3</Name>
|
|
<Icon IconType="material" Name="ic_looks_one"/>
|
|
<ColumnOutputFormattings>
|
|
<ColumnOutputFormatting ValueName="Titel1" Name="Titel 1">
|
|
<Name Lang="DE">Titel 1</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="Titel2" Name="Titel 2">
|
|
<Name Lang="DE">Titel 2</Name>
|
|
</ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
</QuickAction-Remote-User>
|
|
|
|
<QuickAction-Remote-User ScriptName="Test OutPut 4 Domi" Name="OutPut Test 4" InformationClass="User" Section="Sandbox">
|
|
<Name Lang="DE">OutPut Test 4</Name>
|
|
<Icon IconType="material" Name="ic_looks_4"/>
|
|
<ColumnOutputFormattings>
|
|
<ColumnOutputFormatting ValueName="Titel" Name="Titel">
|
|
<Name Lang="DE">Titel</Name>
|
|
</ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
</QuickAction-Remote-User>
|
|
|
|
<QuickAction-Remote-User ScriptName="Test OutPut 5 Domi" Name="OutPut Test 5" InformationClass="User" Section="Sandbox">
|
|
<Name Lang="DE">OutPut Test 5</Name>
|
|
<Icon IconType="material" Name="ic_looks_5"/>
|
|
<ColumnOutputFormattings>
|
|
<ColumnOutputFormatting ValueName="Titel" Name="Titel">
|
|
<Name Lang="DE">Titel</Name>
|
|
</ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
</QuickAction-Remote-User> -->
|
|
<QuickAction-Remote-Computer ScriptName="F4SD Reboot" Name="Reboot device" InformationClass="Computer" Id="e1cd019c-f1bb-486d-a902-d2e8d8f66f81">
|
|
<Name Lang="DE">Starte Gerät neu</Name>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires information about the "Computer".</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Um diese Quick Action verwenden zu können werden Informationen über den "Computer" benötigt.</AlternativeDescription>
|
|
<Icon IconType="material" Name="ic_power_settings_new" />
|
|
</QuickAction-Remote-Computer>
|
|
<QuickAction-Remote-Computer ScriptName="F4SD Get Logsfiles" Name="Get Logs Test" Section="TestSection" InformationClass="Computer" Params="-Days %Days% %ApplicationLog% %SecurityLog% %SetupLog% %SystemLog% %F4SDAgentLogs% %EmpirumLogs%" Id="402519f3-fb88-4ff6-8ecc-0f888be8735c">
|
|
<Icon IconType="material" Name="ic_bug_report" />
|
|
<AdjustableParameters>
|
|
<AdjustableParameter-Numerical Name="Days to collect" ParameterName="Days" IsOptional="false" Default="14">
|
|
<Name Lang="DE">Einzusammelnde Tage</Name>
|
|
<Description Lang="EN">True False Value</Description>
|
|
<Description Lang="DE">Wahr Falsch Wert</Description>
|
|
</AdjustableParameter-Numerical>
|
|
<AdjustableParameter-Boolean Name="Application Logs" ParameterName="ApplicationLog" IsOptional="false" Default="false">
|
|
<Name Lang="DE">Application Logs</Name>
|
|
<Description Lang="EN">True False Value</Description>
|
|
<Description Lang="DE">Wahr Falsch Wert</Description>
|
|
</AdjustableParameter-Boolean>
|
|
<AdjustableParameter-Boolean Name="Security Log" ParameterName="SecurityLog" IsOptional="false" Default="false">
|
|
<Name Lang="DE">Security Log</Name>
|
|
<Description Lang="EN">True False Value</Description>
|
|
<Description Lang="DE">Wahr Falsch Wert</Description>
|
|
</AdjustableParameter-Boolean>
|
|
<AdjustableParameter-Boolean Name="Setup Log" ParameterName="SetupLog" IsOptional="false" Default="false">
|
|
<Name Lang="DE">Setup Log</Name>
|
|
<Description Lang="EN">True False Value</Description>
|
|
<Description Lang="DE">Wahr Falsch Wert</Description>
|
|
</AdjustableParameter-Boolean>
|
|
<AdjustableParameter-Boolean Name="System Log" ParameterName="SystemLog" IsOptional="false" Default="false">
|
|
<Name Lang="DE">System Log</Name>
|
|
<Description Lang="EN">True False Value</Description>
|
|
<Description Lang="DE">Wahr Falsch Wert</Description>
|
|
</AdjustableParameter-Boolean>
|
|
<AdjustableParameter-Boolean Name="F4SD Agent Logs" ParameterName="F4SDAgentLogs" IsOptional="false" Default="true">
|
|
<Name Lang="DE">F4SD Agent Logs</Name>
|
|
<Description Lang="EN">True False Value</Description>
|
|
<Description Lang="DE">Wahr Falsch Wert</Description>
|
|
</AdjustableParameter-Boolean>
|
|
<AdjustableParameter-Boolean Name="Empirum Logs" ParameterName="EmpirumLogs" IsOptional="false" Default="false">
|
|
<Name Lang="DE">Empirum Logs</Name>
|
|
<Description Lang="EN">True False Value</Description>
|
|
<Description Lang="DE">Wahr Falsch Wert</Description>
|
|
</AdjustableParameter-Boolean>
|
|
</AdjustableParameters>
|
|
</QuickAction-Remote-Computer>
|
|
<QuickAction-Remote-Computer ScriptName="F4SD Get Fastboot Status" Name="Get Status of fast boot" InformationClass="Computer" Section="FastBoot" Id="6fe043d9-2bbe-49b2-92f0-2009358b062f">
|
|
<Name Lang="DE">Schnellstart Status auslesen</Name>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires information about the "Computer".</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Um diese Quick Action verwenden zu können werden Informationen über den "Computer" benötigt.</AlternativeDescription>
|
|
<Icon IconType="material" Name="ic_info_outline" />
|
|
<ColumnOutputFormattings>
|
|
<ColumnOutputFormatting ValueName="Status" Translation="qa_fastBoot" Name="Result">
|
|
<Name Lang="DE">Status</Name>
|
|
</ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
</QuickAction-Remote-Computer>
|
|
<QuickAction-Remote-Computer ScriptName="F4SD Activate Fastboot" Name="Activate fast boot" InformationClass="Computer" Section="FastBoot" Id="e2f25141-bbca-40dc-82a9-87e6014ec583">
|
|
<Name Lang="DE">Schnellstart aktivieren</Name>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires information about the "Computer".</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Um diese Quick Action verwenden zu können werden Informationen über den "Computer" benötigt.</AlternativeDescription>
|
|
<Icon IconType="intern" Name="misc_check" />
|
|
<ColumnOutputFormattings>
|
|
<ColumnOutputFormatting ValueName="Status" Translation="qa_fastBoot" Name="Result">
|
|
<Name Lang="DE">Status</Name>
|
|
</ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
</QuickAction-Remote-Computer>
|
|
<QuickAction-Remote-Computer ScriptName="F4SD Deactivate Fastboot" Name="Deactivate fast boot" InformationClass="Computer" Section="FastBoot" Id="e16cd812-a188-4478-af66-62f51c19d8dc">
|
|
<Name Lang="DE">Schnellstart deaktivieren</Name>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires information about the "Computer".</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Um diese Quick Action verwenden zu können werden Informationen über den "Computer" benötigt.</AlternativeDescription>
|
|
<Icon IconType="material" Name="ic_block" />
|
|
<ColumnOutputFormattings>
|
|
<ColumnOutputFormatting ValueName="Status" Translation="qa_fastBoot" Name="Result">
|
|
<Name Lang="DE">Status</Name>
|
|
</ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
</QuickAction-Remote-Computer>
|
|
<QuickAction-Remote-Computer ScriptName="F4SD Get-InstalledPrograms" Name="Installed Programs" InformationClass="Computer" Section="Sandbox" Id="f9768a7e-d8e3-4c62-821f-3c02a4d223a2">
|
|
<Name Lang="DE">Installierte Programme</Name>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires information about the "Computer".</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Um diese Quick Action verwenden zu können werden Informationen über den "Computer" benötigt.</AlternativeDescription>
|
|
<Icon IconType="material" Name="ic_move_to_inbox" />
|
|
</QuickAction-Remote-Computer>
|
|
<QuickAction-Remote-Computer ScriptName="F4SD Get Reboot Pending Reasons" Name="Get Reboot Pending Info" InformationClass="Computer" Section="GetInfo" RunImmediate="true" Id="a85371e8-da55-441d-9475-c6e3a212621a">
|
|
<Name Lang="DE">Reboot Pending Info auslesen</Name>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires information about the "Computer".</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Um diese Quick Action verwenden zu können werden Informationen über den "Computer" benötigt.</AlternativeDescription>
|
|
<Icon IconType="material" Name="ic_settings_power" />
|
|
<ColumnOutputFormattings>
|
|
<ColumnOutputFormatting ValueName="RebootReason" Translation="qa_rebootReason" Name="Reason">
|
|
<Name Lang="DE">Grund</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="RebootOrigin" Name="Origin">
|
|
<Name Lang="DE">Herkunft</Name>
|
|
</ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
</QuickAction-Remote-Computer>
|
|
<QuickAction-Remote-Computer ScriptName="F4SD Set Windows Performance Index" Name="Calculate Performance Index" InformationClass="Computer" Section="GetInfo" Id="1c44a544-e264-4443-8185-dbe808258a73">
|
|
<Name Lang="DE">Leistungsindex berechnen</Name>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires information about the "Computer".</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Um diese Quick Action verwenden zu können werden Informationen über den "Computer" benötigt.</AlternativeDescription>
|
|
<Icon IconType="material" Name="ic_info_outline" />
|
|
<ColumnOutputFormattings>
|
|
<ColumnOutputFormatting ValueName="Output" Translation="qa_winSPRLevel" Name="Status"></ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
</QuickAction-Remote-Computer>
|
|
<QuickAction-Remote-Computer ScriptName="F4SD Read Windows Performance Index" Name="Read out Performance Index" InformationClass="Computer" Section="GetInfo" RunImmediate="true" Id="77cd29f8-6560-4c42-8304-918c22cefbfa">
|
|
<Name Lang="DE">Leistungsindex auslesen</Name>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires information about the "Computer".</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Um diese Quick Action verwenden zu können werden Informationen über den "Computer" benötigt.</AlternativeDescription>
|
|
<Icon IconType="material" Name="ic_info" />
|
|
<ColumnOutputFormattings>
|
|
<ColumnOutputFormatting ValueName="CPUScore" Name="Processor">
|
|
<Name Lang="DE">Prozessor</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="D3DScore" Name="3D Graphics">
|
|
<Name Lang="DE">3D-Grafik</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="DiskScore" Name="Disk/Hard Drive">
|
|
<Name Lang="DE">Laufwerk</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="Graphicsscore" Name="Graphics">
|
|
<Name Lang="DE">Grafik</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="MemoryScore" Name="Memory/RAM">
|
|
<Name Lang="DE">Arbeitsspeicher</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="WinSPRLevel" Name="Total Score">
|
|
<Name Lang="DE">Gesamtwertung</Name>
|
|
</ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
</QuickAction-Remote-Computer>
|
|
<QuickAction-Remote-Computer ScriptName="F4SD AD Group Test" Name="User AD Groups Test 2" Params="-Name "%UserAccount.Value%"" Section="TestSection" InformationClass="Computer" Id="ab4c6c94-1595-4d0a-bc63-7974b76f2aee">
|
|
<Name Lang="DE">User AD Gruppe Test2</Name>
|
|
<Icon IconType="material" Name="ic_group" />
|
|
</QuickAction-Remote-Computer>
|
|
<!--
|
|
<QuickAction-Local-WebRequest InformationClass="User" Name="Create ticket" Section="Ticket" RunImmediate="true" Id="9d4a2844-6eb5-47fa-a8a3-e65064e8d399">
|
|
<Name Lang="DE">Ticket erstellen</Name>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires a selected user.</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Diese Quick Action benötigt einen ausgewählten User.</AlternativeDescription>
|
|
<Icon IconType="intern" Name="misc_plus" />
|
|
<QueryString ParameterName="DirectLinkCreate" />
|
|
<QueryParameter Name="PARAM_SUBJECT"></QueryParameter>
|
|
<QueryParameter Name="PARAM_DESCRIPTION" UseHtmlValue="true" ParameterName="Copy_default" />
|
|
</QuickAction-Local-WebRequest>
|
|
-->
|
|
<QuickAction-Local-WebRequest InformationClass="Ticket" Name="Open Ticket preview in Matrix42 ESM" Section="Ticket" RunImmediate="true" Id="60119e5f-e940-4ba0-99a9-209229eaeb09">
|
|
<Name Lang="DE">Ticket Vorschau in Matrix42 ESM öffnen</Name>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires a selected ticket.</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Diese Quick Action benötigt ein ausgewähltes Ticket.</AlternativeDescription>
|
|
<Icon IconType="intern" Name="status_info" />
|
|
<QueryString ParameterName="DirectLinkPreview" />
|
|
</QuickAction-Local-WebRequest>
|
|
<QuickAction-Local-WebRequest InformationClass="Ticket" Name="Edit ticket in Matrix42 ESM" Section="Ticket" RunImmediate="true" Id="48168e1a-6389-4c08-bf25-722c10ad74da">
|
|
<Name Lang="DE">Ticket in Matrix42 ESM bearbeiten</Name>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires a selected ticket, which is not closed.</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Diese Quick Action benötigt ein ausgewähltes Ticket, welches nicht geschlossen ist.</AlternativeDescription>
|
|
<Icon IconType="material" Name="ic_edit" />
|
|
<QueryString ParameterName="DirectLinkEdit" />
|
|
</QuickAction-Local-WebRequest>
|
|
<!--
|
|
<QuickAction-Local-WebRequest InformationClass="Ticket" Name="Close ticket" Section="Ticket" RunImmediate="true" Id="aa3ce62f-3d01-4a35-823e-b33def8fa63e">
|
|
<Name Lang="DE">Ticket schließen</Name>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires a selected ticket, which is not closed.</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Diese Quick Action benötigt ein ausgewähltes Ticket, welches nicht geschlossen ist.</AlternativeDescription>
|
|
<Icon IconType="intern" Name="status_good" />
|
|
<QueryString ParameterName="DirectLinkClose" />
|
|
</QuickAction-Local-WebRequest>
|
|
-->
|
|
<QuickAction-Chained Name="Chained Quick Action" InformationClass="User Computer" Section="Sandbox" Id="13366ac1-6d2c-408e-b76c-96711906ae4e">
|
|
<Icon IconType="material" Name="ic_bug_report" />
|
|
<QuickAction-Reference Name="Disk cleanup" />
|
|
<QuickAction-Reference Name="Edit AD user object" />
|
|
</QuickAction-Chained>
|
|
<QuickAction-Remote-User ScriptName="C4IT_Demo_Ref_SingleResult" Name="C4IT reference script for a single value" InformationClass="Computer" RunImmediate="true" Section="C4ITIntern" Id="e5b15913-6160-42b0-aa2e-ee48aa49690f">
|
|
<Name Lang="DE">C4IT Referenz Script für einen einfachen Wert</Name>
|
|
<Icon IconType="material" Name="ic_school" />
|
|
</QuickAction-Remote-User>
|
|
<QuickAction-Remote-User ScriptName="C4IT_Demo_Ref_MultipleResult" Name="C4IT reference script for muliple values" InformationClass="Computer" RunImmediate="true" Section="C4ITIntern" Id="bebc2ae5-17e3-425d-a490-94606a972e0b">
|
|
<Name Lang="DE">C4IT Referenz Script für mehrfache Werte</Name>
|
|
<Icon IconType="material" Name="ic_school" />
|
|
<ColumnOutputFormattings>
|
|
<ColumnOutputFormatting ValueName="ProductName" Name="Product name" Display="STRING">
|
|
<Name Lang="DE">Produkt Name</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="InstallationType" Name="Installation type" Display="STRING">
|
|
<Name Lang="DE">Installationstyp</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="CurrentBuild" Name="Current build" Display="STRING">
|
|
<Name Lang="DE">Aktueller Build</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="CurrentVersion" Name="Current version" Display="STRING">
|
|
<Name Lang="DE">Aktuelle Version</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="DisplayVersion" Name="Display version" Display="STRING">
|
|
<Name Lang="DE">Angezeigte Version</Name>
|
|
</ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
</QuickAction-Remote-User>
|
|
<QuickAction-Remote-User ScriptName="C4IT_Demo_Ref_TableResult" Name="C4IT reference script for table like values" InformationClass="Computer" RunImmediate="true" Section="C4ITIntern" Id="d1376088-e28e-4d11-ad4d-f44c1cf00774">
|
|
<Name Lang="DE">C4IT Referenz Script für Tabellen artige Werte</Name>
|
|
<Icon IconType="material" Name="ic_school" />
|
|
<ColumnOutputFormattings>
|
|
<ColumnOutputFormatting ValueName="Executable" Name="Executable" Display="STRING">
|
|
<Name Lang="DE">EXE Datei</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="DumpCount" Name="Dump count" Display="STRING">
|
|
<Name Lang="DE">Dump Anzahl</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="DumpType" Name="Dump type" Display="STRING">
|
|
<Name Lang="DE">Dump Typ</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="DumpFolder" Name="Dump folder" Display="STRING">
|
|
<Name Lang="DE">Dump Ordner</Name>
|
|
</ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
</QuickAction-Remote-User>
|
|
<QuickAction-Remote-User ScriptName="C4IT_Demo_Ref_SuccessSignaling" Name="C4IT reference script for success signaling" InformationClass="Computer" RunImmediate="true" Section="C4ITIntern" Id="e6f4ed3d-8112-4aee-a017-ff62411da40e">
|
|
<Name Lang="DE">C4IT Referenz Script für Erfolgs-Signalisierung</Name>
|
|
<Icon IconType="material" Name="ic_school" />
|
|
<ColumnOutputFormattings>
|
|
<ColumnOutputFormatting ValueName="WebView2" Name="WebView2" Translation="c4it_demo_ref_component_state" Display="STRING" />
|
|
<ColumnOutputFormatting ValueName="Version" Name="Version" Display="STRING" />
|
|
</ColumnOutputFormattings>
|
|
</QuickAction-Remote-User>
|
|
<QuickAction-Remote-User ScriptName="C4IT_Demo_Ref_ErrorResult" Name="C4IT reference script for demonstration an error" InformationClass="Computer" RunImmediate="true" Section="C4ITIntern" Id="346f4f10-5b22-4b25-862a-85d364a8716d">
|
|
<Name Lang="DE">C4IT Referenz Script zur Erzeugung eines Fehlers</Name>
|
|
<Icon IconType="material" Name="ic_school" />
|
|
</QuickAction-Remote-User>
|
|
<QuickAction-Remote-User ScriptName="C4IT_Demo_Ref_ParameterPassing" Name="C4IT reference script for passing parameters" InformationClass="User" RunImmediate="false" Section="C4ITIntern" Params="-NumericalValue %NumericalValue% -DropDownValue "%DropDownValue%" %SwitchValue%" ExecutionType="RemoteScript" ResultType="Information" Id="2A98F49C-D348-4D5F-9A80-5AB2FB0BFBDA">
|
|
<Name Lang="DE">C4IT Referenz Script zur Übergabe von Parametern</Name>
|
|
<Icon IconType="material" Name="ic_school"/>
|
|
<AdjustableParameters>
|
|
<AdjustableParameter-Numerical Name="Numerical value" ParameterName="NumericalValue" IsOptional="false" Default="10">
|
|
<Name Lang="DE">Numerischer Wert</Name>
|
|
<Description Lang="EN">Number Value</Description>
|
|
<Description Lang="DE">Zahl Wert</Description>
|
|
</AdjustableParameter-Numerical>
|
|
<AdjustableParameter-DropDown Name="DropDown Value" ParameterName="DropDownValue" IsOptional="false" Default="$null">
|
|
<Name Lang="DE">Auswahl Wert</Name>
|
|
<AdjustableParameter-DropDownValue Value="Selection 1">
|
|
<AdjustableParameter-DropDownDisplayValue Lang="DE">Auswahl 1</AdjustableParameter-DropDownDisplayValue>
|
|
</AdjustableParameter-DropDownValue>
|
|
<AdjustableParameter-DropDownValue Value="Selection 2">
|
|
<AdjustableParameter-DropDownDisplayValue Lang="DE">Auswahl 2</AdjustableParameter-DropDownDisplayValue>
|
|
</AdjustableParameter-DropDownValue>
|
|
<AdjustableParameter-DropDownValue Value="Selection 3">
|
|
<AdjustableParameter-DropDownDisplayValue Lang="DE">Auswahl 3</AdjustableParameter-DropDownDisplayValue>
|
|
</AdjustableParameter-DropDownValue>
|
|
<AdjustableParameter-DropDownValue Value="Selection 4">
|
|
<AdjustableParameter-DropDownDisplayValue Lang="DE">Auswahl 4</AdjustableParameter-DropDownDisplayValue>
|
|
</AdjustableParameter-DropDownValue>
|
|
</AdjustableParameter-DropDown>
|
|
<AdjustableParameter-Boolean Name="Switch value" ParameterName="SwitchValue" IsOptional="false" Default="true">
|
|
<Name Lang="DE">Schaltwert</Name>
|
|
<Description Lang="EN">True False Value</Description>
|
|
<Description Lang="DE">Wahr Falsch Wert</Description>
|
|
</AdjustableParameter-Boolean>
|
|
</AdjustableParameters>
|
|
<ColumnOutputFormattings>
|
|
<ColumnOutputFormatting ValueName="BoolValue" Name="Boolean value" Display="STRING">
|
|
<Name Lang="DE">Boolscher Wert</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="NumericalValue" Name="Numerical value" Display="STRING">
|
|
<Name Lang="DE">Numerischer Wert</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="DropDownValue" Name="DropDown Value" Display="STRING">
|
|
<Name Lang="DE">Auswahl Wert</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="SwitchValue" Name="Switch value" Display="STRING">
|
|
<Name Lang="DE">Schaltwert</Name>
|
|
</ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
</QuickAction-Remote-User>
|
|
<QuickAction-Local-Script InformationClass="Computer" Name="Test signed local script" Section="C4ITIntern" StartWithAlternateCredentials="false" RequireAdministrator="false" RunImmediate="true" ExecutionType="ExternalApplication" ResultType="ExternalApplication" Id="875ed313-4361-40f4-aab3-23c378240236">
|
|
<Icon IconType="intern" Name="misc_computer" />
|
|
<Script IsBase64="true">
|
|
77u/JHJlcyA9IChbU2VjdXJpdHkuUHJpbmNpcGFsLldpbmRvd3NQcmluY2lwYWxdIGANCiAgW1Nl
|
|
Y3VyaXR5LlByaW5jaXBhbC5XaW5kb3dzSWRlbnRpdHldOjpHZXRDdXJyZW50KCkgYA0KKS5Jc0lu
|
|
Um9sZShbU2VjdXJpdHkuUHJpbmNpcGFsLldpbmRvd3NCdWlsdEluUm9sZV06OkFkbWluaXN0cmF0
|
|
b3IpDQoNCiRudWwgPSBbU3lzdGVtLldpbmRvd3MuTWVzc2FnZUJveF06OlNob3coJHJlcy5Ub1N0
|
|
cmluZygpLCJJcyBhZG1pbiIsW1N5c3RlbS5XaW5kb3dzLk1lc3NhZ2VCb3hCdXR0b25dOjpPSyxb
|
|
U3lzdGVtLldpbmRvd3MuTWVzc2FnZUJveEltYWdlXTo6SW5mb3JtYXRpb24pDQojIFNJRyAjIEJl
|
|
Z2luIHNpZ25hdHVyZSBibG9jaw0KIyBNSUlTdUFZSktvWklodmNOQVFjQ29JSVNxVENDRXFVQ0FR
|
|
RXhEekFOQmdsZ2hrZ0JaUU1FQWdFRkFEQjVCZ29yDQojIEJnRUVBWUkzQWdFRW9Hc3dhVEEwQmdv
|
|
ckJnRUVBWUkzQWdFZU1DWUNBd0VBQUFRUUg4dzdZRmxMQ0U2M0pOTEcNCiMgS1g3elVRSUJBQUlC
|
|
QUFJQkFBSUJBQUlCQURBeE1BMEdDV0NHU0FGbEF3UUNBUVVBQkNBR2ozSUtNOWhRb253Vg0KIyBY
|
|
OVVoTFBPNndZSG42cXVVRWhUS2ttVzRiRDhJVHFDQ0R2QXdnZ2JvTUlJRTBLQURBZ0VDQWhCM3ZR
|
|
NEZ0MWtMDQojIHRoMUhZVk1lUDNYdE1BMEdDU3FHU0liM0RRRUJDd1VBTUZNeEN6QUpCZ05WQkFZ
|
|
VEFrSkZNUmt3RndZRFZRUUsNCiMgRXhCSGJHOWlZV3hUYVdkdUlHNTJMWE5oTVNrd0p3WURWUVFE
|
|
RXlCSGJHOWlZV3hUYVdkdUlFTnZaR1VnVTJsbg0KIyBibWx1WnlCU2IyOTBJRkkwTlRBZUZ3MHlN
|
|
REEzTWpnd01EQXdNREJhRncwek1EQTNNamd3TURBd01EQmFNRnd4DQojIEN6QUpCZ05WQkFZVEFr
|
|
SkZNUmt3RndZRFZRUUtFeEJIYkc5aVlXeFRhV2R1SUc1MkxYTmhNVEl3TUFZRFZRUUQNCiMgRXls
|
|
SGJHOWlZV3hUYVdkdUlFZERReUJTTkRVZ1JWWWdRMjlrWlZOcFoyNXBibWNnUTBFZ01qQXlNREND
|
|
QWlJdw0KIyBEUVlKS29aSWh2Y05BUUVCQlFBRGdnSVBBRENDQWdvQ2dnSUJBTXNnNzVjZXVRRXlR
|
|
NkJicVlvai9TQmVyamdTDQojIGk4b3MxUDlCMkJwVjFCbFR0LzJqRitkNk9WekE5ODRSby9tbDdR
|
|
SDZ0YnFUNzYrVDNQamlzeGxNZzdCS1JGQUUNCiMgZUlRUWFxVFdscENPZ2ZoOHF5KzFvMWN6MGxo
|
|
N2xBNXRENldSSmlxemcwOXlzWXA3WkpMUThMUlZYNVlMRWVXYQ0KIyB0U3l5RWM4bEczMVJLNWdm
|
|
U2FOZitCT2VOYmdEQXRxa0V5K0ZTdS9FTDNBT3dkVE1NeExzdlVDVjB4SEs1czJ6DQojIEJaeklV
|
|
K3RTMTNoTVVRR1NndDRUOHdlT2RMcUVnSi9TcEJVTzZLL3I5NG4yMzNIdzBiNm5za0V6SUhYTXNk
|
|
WHQNCiMgSFFjWnhPc21kL0tyYlJlVFNhbTM1c09Rbk1hNDdNekplNXBleGNVa2syTnZmaENMWWMr
|
|
WVZhTWtvb2cyOHZtZg0KIyB2cE11c2dhZkpzQU1BVllTNGJLS253NGUzSmlMTHMvYTRvazBwaDht
|
|
b0tpdWVHM3NvWWdWUE1McTdyZllyV0dsDQojIHIzQTJvbm1PM0ExendQSGtMS3VVN0ZnR09UWkkx
|
|
anRhNkNMT2RBNnZMUEVWMnRHMGxlaXMxVWx0NWEvZG0ydGoNCiMgSUYyT2ZqdXlROWhpT3BUbHpi
|
|
U1lzemNaSkJKeWM2c0VzQW5jaGViVUlnVHZRQ29kTG0zSGFkTnV0d0ZzRGVDWA0KIyBweGJtSm91
|
|
STl3TkVobDlpWjB5MXB6ZW9WZHdETm94dXoyMDJKdkVPajdBOWNjRGhNcWVDNUxZeUFqSXdmTFdU
|
|
DQojIHlDSDlQSWptYVdQNDduWEppOEtyNzdvNi9lbGV2N1lSOGI3d1Bjb3lQbTU5M2c5K201WEVF
|
|
b2ZuR3JoTzdpekINCiMgMzZGbDZDU0R5U3JDL2JsVEFnTUJBQUdqZ2dHdE1JSUJxVEFPQmdOVkhR
|
|
OEJBZjhFQkFNQ0FZWXdFd1lEVlIwbA0KIyBCQXd3Q2dZSUt3WUJCUVVIQXdNd0VnWURWUjBUQVFI
|
|
L0JBZ3dCZ0VCL3dJQkFEQWRCZ05WSFE0RUZnUVVKWjNRDQojIC9Ga0pobVBGN1BPeEV6dFhIQU9T
|
|
TmhFd0h3WURWUjBqQkJnd0ZvQVVId0MvUm9BSy9IZzV0NlcwUTlsV1VMdk8NCiMgbGpzd2daTUdD
|
|
Q3NHQVFVRkJ3RUJCSUdHTUlHRE1Ea0dDQ3NHQVFVRkJ6QUJoaTFvZEhSd09pOHZiMk56Y0M1bg0K
|
|
IyBiRzlpWVd4emFXZHVMbU52YlM5amIyUmxjMmxuYm1sdVozSnZiM1J5TkRVd1JnWUlLd1lCQlFV
|
|
SE1BS0dPbWgwDQojIGRIQTZMeTl6WldOMWNtVXVaMnh2WW1Gc2MybG5iaTVqYjIwdlkyRmpaWEow
|
|
TDJOdlpHVnphV2R1YVc1bmNtOXYNCiMgZEhJME5TNWpjblF3UVFZRFZSMGZCRG93T0RBMm9EU2dN
|
|
b1l3YUhSMGNEb3ZMMk55YkM1bmJHOWlZV3h6YVdkdQ0KIyBMbU52YlM5amIyUmxjMmxuYm1sdVoz
|
|
SnZiM1J5TkRVdVkzSnNNRlVHQTFVZElBUk9NRXd3UVFZSkt3WUJCQUdnDQojIE1nRUNNRFF3TWdZ
|
|
SUt3WUJCUVVIQWdFV0ptaDBkSEJ6T2k4dmQzZDNMbWRzYjJKaGJITnBaMjR1WTI5dEwzSmwNCiMg
|
|
Y0c5emFYUnZjbmt2TUFjR0JXZUJEQUVETUEwR0NTcUdTSWIzRFFFQkN3VUFBNElDQVFBbGRhQUp5
|
|
VG02dDZFNQ0KIyBpUzhZbjZ2VzZ4MUw2SlI4RFFkb214eWQ3M0cyRjJwckFrK3pQNFpGaDh4bG0w
|
|
empXQVlDSW1iVllRTEZZNC9VDQojIG92RzJYaVVMZDVicHpYRkFNNGdwN083em9tMjhUYlUrQmt2
|
|
SmN6UEtDQlF0UFV6b3NMcDFwblF0cEZnNmJCTkoNCiMgK0tVVkNoU1doYkZxYURRbFFxK1dWdlFR
|
|
K2lSOThTdHl3UmJoYSt2bXFaakhQbHIwMEJpZC9YU1hobmRHS2owag0KIyBmU2h6aXE3dkt4dWF2
|
|
MnhUcHhTZVBJZHh3RjZPeVB2VEtwSXo2bGROWGdkZXlzRVlySUV0R2lINmJzK1hZWHZmDQojIGNY
|
|
bzZ5bVAzMVRCRU56TCt1ME9GM0xyOHBzb3pHU3QzYmR2TEJmQitYM1V1b3JhL05hbzJZOG5PWk5t
|
|
OS9Md3MNCiMgODBsV0FNZ1NLOFludXpldlYrL0V6eDRweFBUaUxjNHFZYzlYN2ZVS1FPTDFHTlll
|
|
NlpBdnl0T0hYNU9LU0JvUg0KIyBIZVUzaFo4dVptS2FYb0ZPbGF4VlYwUGNVNHNsZmp4aEQ0b0x1
|
|
dlUvcHRlTzl3UldYaUc3bjlkcWNZQy9sdDV5DQojIEE5allJaXZ6SnhaUE9PaFJRQXl1a3UrK1BY
|
|
MzNnTVpNTmxlRWxhZUVGVWd3RGxJbkNJMk9vcjBpeHhuSnBzb08NCiMgcUhvMjIycTZZVjhSSkpX
|
|
azRvNW83aG1wU1psZTBMUTB2ZGI1UU1jUWx6RlNPVFVwRVljazA4VDdxV1BMZDBqVg0KIyArbUw4
|
|
Sk9BRWVrN1E1RzdlenA0NFVDYjBJWEZsMXdrbDFNa0hBSHE0eC9OMzZNWFU0bFhRMHg3MmYxTGlT
|
|
WTI1DQojIEVYSU1pRVFtTTJZQlJOL2tNdzRoM21LSlNBZmE5VENDQ0FBd2dnWG9vQU1DQVFJQ0RI
|
|
anJselZ3WENNYmlMcGQNCiMgUWpBTkJna3Foa2lHOXcwQkFRc0ZBREJjTVFzd0NRWURWUVFHRXdK
|
|
Q1JURVpNQmNHQTFVRUNoTVFSMnh2WW1Gcw0KIyBVMmxuYmlCdWRpMXpZVEV5TURBR0ExVUVBeE1w
|
|
UjJ4dlltRnNVMmxuYmlCSFEwTWdValExSUVWV0lFTnZaR1ZUDQojIGFXZHVhVzVuSUVOQklESXdN
|
|
akF3SGhjTk1qTXdOREkzTVRNME1qVTFXaGNOTWpZd05USTNNVE0wTWpVMVdqQ0MNCiMgQVVJeEhU
|
|
QWJCZ05WQkE4TUZGQnlhWFpoZEdVZ1QzSm5ZVzVwZW1GMGFXOXVNUk13RVFZRFZRUUZFd3BJVWtJ
|
|
Zw0KIyBNell5TmpjNU1STXdFUVlMS3dZQkJBR0NOendDQVFNVEFrUkZNU013SVFZTEt3WUJCQUdD
|
|
Tnp3Q0FRSVRFa0poDQojIFpHVnVMVmQxWlhKMGRHVnRZbVZ5WnpFWk1CY0dDeXNHQVFRQmdqYzhB
|
|
Z0VCRXdoTllXNXVhR1ZwYlRFTE1Ba0cNCiMgQTFVRUJoTUNSRVV4R3pBWkJnTlZCQWdNRWtKaFpH
|
|
VnVMVmZEdkhKMGRHVnRZbVZ5WnpFU01CQUdBMVVFQnhNSg0KIyBWMkZzWkdKeWIyNXVNUmt3RndZ
|
|
RFZRUUpFeEJKYlNCRmNtMXNhWE5uY25WdVpDQTRNUnN3R1FZRFZRUUtFeEpEDQojIGIyNXpkV3gw
|
|
YVc1bk5FbFVJRWR0WWtneEd6QVpCZ05WQkFNVEVrTnZibk4xYkhScGJtYzBTVlFnUjIxaVNERWsN
|
|
CiMgTUNJR0NTcUdTSWIzRFFFSkFSWVZhVzVtYjBCamIyNXpkV3gwYVc1bk5HbDBMbVJsTUlJQ0lq
|
|
QU5CZ2txaGtpRw0KIyA5dzBCQVFFRkFBT0NBZzhBTUlJQ0NnS0NBZ0VBeDdOTHVJMGZqN01pZy9h
|
|
SVQwMVNaaXlUWlNraGlCbEFjdGFODQojIHQvNitGQ244QVdFUE9WRlFDTEZwVHptdVQ3eWJQWTc3
|
|
dEpkZWxYa2pIY0NjYVpxSDdla3kzd2JxQ2liZ1BYYUoNCiMgWmMyV2I2WUpSQUE5L0hSYW5JTCtk
|
|
OUdra2RrNEhIcXE2NVVkV2Q5ZUFRODY3YUdhc0xSMkhaK2YyVkd4RXJZQQ0KIyA4VUQ2Zkc1ZFJ0
|
|
TnlTMUI0MG5BbXRQQTN1dWhRU2VaN1FINGNmTmdaR2laNVp2N3Fabm9FeEd6K1hmTVFpeE9hDQoj
|
|
IDZ6em9zbUpoWmpyMmYwb3FpMjhEV0lIL1dZWkNYei91eEU5bURDYmQ2aFBKeUUzYStDUTJtY3JE
|
|
T0YvdnFPSDgNCiMgYTd2VzNoL2d6QVJmOUtIOXdwNXFMQU1Fdjc5L1JzWWF2QXVoaUJUSnBhOXVm
|
|
M1RzREdpQk8wV2RxV0hOY3ZuaA0KIyBCK2YrS2lJWGN0T1VUYXFrUkZDMUZkUlIzR2hKWjhLTWJt
|
|
QTI5MEM3d2J6enovVjlkZmVwUktGTWJMTGlKYW0xDQojICs3R1VyaTRLaEsycjBCUVBoRVlNWVNR
|
|
UEdKMEp3UmxKMGZNbFlFdWt3UnBKUURSQUNSMXZRZWppTFFKRW1lTnQNCiMgL3JOY1RlaUdEYThG
|
|
Uy9NQmJNb2V0OXIrVTRUdnpYTURBUjROczVjK3NkSjdpTDh4NDlTaGM1TVU5ZExvay9ncw0KIyBs
|
|
dm51amFwSElEUE1YZ2NHK2Z0OU9OTzg5VTRxbm92aVRjR2ZNcDRMZVhrL1VWZ1RueXdvelJGK0Nl
|
|
bjF3dkNSDQojIGRmeDlCQTR6KzBtRnl5dmdHNjljVFIycUJqNWlvNE5nL0pmcW5MankzZ3lkMmw4
|
|
M3ZVSGl5RzVMcG9zRnJ3d3ENCiMgaWZyNXJmMENBd0VBQWFPQ0FkZ3dnZ0hVTUE0R0ExVWREd0VC
|
|
L3dRRUF3SUhnRENCbndZSUt3WUJCUVVIQVFFRQ0KIyBnWkl3Z1k4d1RBWUlLd1lCQlFVSE1BS0dR
|
|
R2gwZEhBNkx5OXpaV04xY21VdVoyeHZZbUZzYzJsbmJpNWpiMjB2DQojIFkyRmpaWEowTDJkeloy
|
|
TmpjalExWlhaamIyUmxjMmxuYm1OaE1qQXlNQzVqY25Rd1B3WUlLd1lCQlFVSE1BR0cNCiMgTTJo
|
|
MGRIQTZMeTl2WTNOd0xtZHNiMkpoYkhOcFoyNHVZMjl0TDJkeloyTmpjalExWlhaamIyUmxjMmxu
|
|
Ym1OaA0KIyBNakF5TURCVkJnTlZIU0FFVGpCTU1FRUdDU3NHQVFRQm9ESUJBakEwTURJR0NDc0dB
|
|
UVVGQndJQkZpWm9kSFJ3DQojIGN6b3ZMM2QzZHk1bmJHOWlZV3h6YVdkdUxtTnZiUzl5WlhCdmMy
|
|
bDBiM0o1THpBSEJnVm5nUXdCQXpBSkJnTlYNCiMgSFJNRUFqQUFNRWNHQTFVZEh3UkFNRDR3UEtB
|
|
Nm9EaUdObWgwZEhBNkx5OWpjbXd1WjJ4dlltRnNjMmxuYmk1ag0KIyBiMjB2WjNOblkyTnlORFZs
|
|
ZG1OdlpHVnphV2R1WTJFeU1ESXdMbU55YkRBZ0JnTlZIUkVFR1RBWGdSVnBibVp2DQojIFFHTnZi
|
|
bk4xYkhScGJtYzBhWFF1WkdVd0V3WURWUjBsQkF3d0NnWUlLd1lCQlFVSEF3TXdId1lEVlIwakJC
|
|
Z3cNCiMgRm9BVUpaM1EvRmtKaG1QRjdQT3hFenRYSEFPU05oRXdIUVlEVlIwT0JCWUVGT05xSWcv
|
|
bUlXQ2lLUFhmUVNJYg0KIyA3ODdlY0xFQk1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQ0FRREpZbzc2
|
|
YVJhODE1UFQ5ZGVzR2N6azZZaWFmUUtHDQojIC9iWXByOWJvRFVjQ1FscHh1dDhpaG1lS3Q1YWhi
|
|
bkUveG9YVFRqRW5xRXA3Q0JoTkRpcWY3Z0FRbGVJeXZNVHYNCiMgU0loNWFmZzlaZHBPRE9TUDZh
|
|
eTMxa1ZpWUpJeDNWMnRTbmFtWWZKS2FLMDVGQVEwdnBaUHNHOGQvSUhSZXlueQ0KIyBlbXhoeXY3
|
|
dGQvT3BOQ2VUVXFRaCtiUHNlRUJodFhQT0JJd3RWMFlNT2Q0aGhVUWN3MnBLbzA0MXZXdTJxckFw
|
|
DQojIHdWSG16MlVUWlBtdHBEMHBTNFE4MXNNY3d1bnF6bFUySDJCRktMWXdzU2VBU1NDSVdKTGNt
|
|
YUE3R2ZjL2l6WU0NCiMgRTNSblk3VmovSG0wejBPOGRhZkU3Y01LVTRmcUJaYjRSL2ZuT1R3b1Fx
|
|
aHlyWmtsWksyeWl5WXBObHE1Yk1hag0KIyBodnJ4MjZnb2NYQ0xoem1icnhZQUNHb3FKUk02MGJj
|
|
dldzRWZ2anB0eVR4V21HVUJpbjF2RWVYQ1UvdXpmVWJZDQojIG9DTWNucUZwaG1SemNEdStzQTVn
|
|
RFA3aUdFaGVnd1lRK1dSV2JPdmtwN0FJMDJjY0xvZkNTdk53WktZVGJVQmINCiMgWVZlQ1R0bzRT
|
|
YzVYb1RSUnNDQjBoYk45SGgzRSs5Wml1SkdURnRwUHdoZU9CSUc4ZGUrakVoZE9acmlkM1NLNA0K
|
|
IyBSYnNwMWNSTmNiWnIrbUdOQVRIdjVhakpLWUt5Q1kxazR0MC9obUNtbEVIbko0RXlmNUQrcUdK
|
|
cEtpVzNaL3ZzDQojIHE4WDVsNDZoQXRTOUpmdmFlUVdtakExdjc5SmxyZzlqWVpoUlE1WkV4RHlp
|
|
TGdNMnVTRUxXYm5Ma0JWc0ptdHUNCiMgeHFOa2tITVdQbTZTZ2pHQ0F4NHdnZ01hQWdFQk1Hd3dY
|
|
REVMTUFrR0ExVUVCaE1DUWtVeEdUQVhCZ05WQkFvVA0KIyBFRWRzYjJKaGJGTnBaMjRnYm5ZdGMy
|
|
RXhNakF3QmdOVkJBTVRLVWRzYjJKaGJGTnBaMjRnUjBORElGSTBOU0JGDQojIFZpQkRiMlJsVTJs
|
|
bmJtbHVaeUJEUVNBeU1ESXdBZ3g0NjVjMWNGd2pHNGk2WFVJd0RRWUpZSVpJQVdVREJBSUINCiMg
|
|
QlFDZ2dZUXdHQVlLS3dZQkJBR0NOd0lCRERFS01BaWdBb0FBb1FLQUFEQVpCZ2txaGtpRzl3MEJD
|
|
UU14REFZSw0KIyBLd1lCQkFHQ053SUJCREFjQmdvckJnRUVBWUkzQWdFTE1RNHdEQVlLS3dZQkJB
|
|
R0NOd0lCRlRBdkJna3Foa2lHDQojIDl3MEJDUVF4SWdRZzRwbzczNnpRYW1KRlF6UHdSSlFqbG5Z
|
|
cG5xY1RFZXY3ditrSDV4ajFmY0V3RFFZSktvWkkNCiMgaHZjTkFRRUJCUUFFZ2dJQURhYmNUSE1B
|
|
NVR2SnR1bVRrRXRuT3VTeVJSUEZHQmlzRU1VRk10NFBEeEZIVjc3Nw0KIyBBUTZXRTlJOVFybGhs
|
|
K2JFL1JMMXFKWnhpRmIrY2hrdmxZR0dhaElGZEdxYlkrbkZOaFRKRGR4M2REbTA0QU8yDQojIDl1
|
|
RGNhRFlQRkV3K3I5M0VGOHdWaUdEaldCNFBtbUcyV1B2YWkzOVlqS1hHalFOdmRlNlNjVUxjdVha
|
|
TTlRTGYNCiMgUTUvelVUUERzS2R0dkFIeERVT1BsMlJUN3cyV2hPTEgvempLZjZ2M2xkcnZuaW5w
|
|
L01kY01pTUlMNGhDODNqVg0KIyBuWmhGZVhEbTZ4bjh6WU1uWXcxZU9aVVloOTVIWEVXblhOcFlV
|
|
SC9wSEpEWEhFS1QwS1dZT1drc2gzYURJWloyDQojIERIK2g2cTJZcU9MZk8zYjF4TFVZZTBtUVNr
|
|
ZVNGMXlVdmRoUFZUSHptMVlwVThPQmNLSUZJM01jc3pDSHZMRXgNCiMgTUR3YU1OaGxEZEw0UlhN
|
|
RmE3enEzVnNqMkhlbUtrU1JNK0JtVVdMaWtPTTdKVWFxQVljZnpwRmQyVWVxMEgwQg0KIyByOWZN
|
|
d29WQmVJTExyck0xRkpOdjhsakhxOFMrN3YvNy9pekRsMFQxTzZ2U1ZNZ2Q2Nm41SFFsdFBrSGlm
|
|
aEZ5DQojIFVPS3BCeGRDTkFvS0VwNEx4YWNQZWwxT3ZFVi92dlJnZ29mOWltMmRwQ202ZllGMjRG
|
|
YzMxek45RzRnNFZURWMNCiMgZ1g3VHM0dGNaOVRXRnBjTHA5UEFkMFFYTlZlQnQydHVnQSswQlJp
|
|
TVFRRWRCV3NjUVRUVUwwUWtYbFR2S0VPTQ0KIyBOTFhHWVk3ckhiWXhCdFZOWkFmYndqMDc1STND
|
|
ZFpQSHBzSWZSTndLNU51N0sxL2hzTnU4UzhqZG9udz0NCiMgU0lHICMgRW5kIHNpZ25hdHVyZSBi
|
|
bG9jaw0K
|
|
</Script>
|
|
</QuickAction-Local-Script>
|
|
|
|
<QuickAction-Server Category="Intune" Action="UpdateComplianceState" Name="Update ComplianceState" ParamaterType ="deviceId" InformationClass="Computer" Section ="Intune" Id="bc98eabc-353f-4866-bab0-681aafe48d7b">
|
|
<Name Lang="DE">Intune Komformitätsstatus erzwingen</Name>
|
|
<Name Lang="EN">Enforce Intune compliance state</Name>
|
|
<Description Lang="DE">Komformitätsstatus aktualisieren</Description>
|
|
<Description Lang="EN">Update compliance state</Description>
|
|
<Icon IconType="material" Name="ic_verified_user" />
|
|
</QuickAction-Server>
|
|
<QuickAction-Server Category="Intune" Action="GetBitlockerKey" ParamaterType ="deviceId" Name="Get BitlockerKey" InformationClass="Computer" Section ="Intune" Id="5123e4f8-e183-428f-bff1-b3e2afdfc745">
|
|
<Name Lang="DE">Bitlocker Schlüssel anzeigen</Name>
|
|
<Name Lang="EN">Show Bitlocker recoverykey</Name>
|
|
|
|
<Description Lang="DE">BitLocker-Schlüssel</Description>
|
|
<Description Lang="EN">Bitlocker recoverykey</Description>
|
|
|
|
<Icon IconType="material" Name="ic_vpn_key" />
|
|
|
|
<ColumnOutputFormattings>
|
|
<ColumnOutputFormatting ValueName="key" Name="BitlockerKey" Display="STRING" IsSecret="true">
|
|
<Name Lang="DE">BitLocker-Schlüssel</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="volumeType" Name="Volume Type" Translation ="bitlocker_volume" Display="STRING">
|
|
<Name Lang="DE">Laufwerkstyp</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="createdDateTime" Name="Created date" Display="STRING">
|
|
<Name Lang="DE">Erstellungsdatum </Name>
|
|
</ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
|
|
</QuickAction-Server>
|
|
|
|
<QuickAction-Server Category="Intune" Action="GetManagedApps" Name="Get Managed Apps" ParamaterType ="deviceId" InformationClass="Computer" Section ="Intune" Id="e798637e-a315-4d88-aec8-e6f22f9f70c7" >
|
|
<Name Lang="DE">Verwaltete Anwendungen anzeigen</Name>
|
|
<Name Lang="EN">Show managed applications</Name>
|
|
|
|
<Description Lang="DE">Verwaltete Anwendungen anzeigen</Description>
|
|
<Description Lang="EN">Show managed apps</Description>
|
|
|
|
<Icon IconType="material" Name="ic_widgets"/>
|
|
|
|
<ColumnOutputFormattings>
|
|
|
|
<ColumnOutputFormatting ValueName="displayName" Name="AppName" Display="STRING">
|
|
<Name Lang="DE">App Name</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="platform" Name="Platform" Display="STRING">
|
|
<Name Lang="DE">Platform</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="version" Name="Version" Display="STRING">
|
|
<Name Lang="DE">Version</Name>
|
|
</ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
</QuickAction-Server>
|
|
|
|
<QuickAction-Local-WebRequest InformationClass="Computer" Name="Open Intune (web)" RunImmediate="true" CheckNamedParameter="IntuneDeviceId" Section="Intune" Id="fc162f02-286d-48ce-a9ec-94118e62b735">
|
|
<Name Lang="DE">Intune Webseite öffnen</Name>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires information about the "Device".</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Um diese Quick Action verwenden zu können werden Informationen über das "Gerät" benötigt.</AlternativeDescription>
|
|
<Icon IconType="material" Name="ic_open_in_browser" />
|
|
<QueryString>https://intune.microsoft.com/#view/Microsoft_Intune_Devices/DeviceSettingsMenuBlade/~/overview/mdmDeviceId/PARAM_DeviceId</QueryString>
|
|
<QueryParameter Name="PARAM_DeviceId" ParameterName="IntuneDeviceId" />
|
|
</QuickAction-Local-WebRequest>
|
|
|
|
|
|
<!--<QuickAction-Server Category="Intune" Action="GetLAPS" ParamaterType ="deviceId" Name="Get LAPS" InformationClass="Computer" Section ="Intune" Id="e0446b95-81b6-4a62-82cf-7c14988957ba" >
|
|
<Name Lang="DE">LAPS Passwort anzeigen</Name>
|
|
<Name Lang="EN">Show LAPS Password</Name>
|
|
|
|
<Description Lang="DE">LAPS Passwort anzeigen</Description>
|
|
<Description Lang="EN">Show LAPS Password</Description>
|
|
|
|
<Icon IconType="material" Name="ic_vpn_key" />
|
|
|
|
<ColumnOutputFormattings>
|
|
<ColumnOutputFormatting ValueName="accountName" Name="Accountname" Display="STRING">
|
|
<Name Lang="DE">Kontoname</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="passwordBase64" Name="Password" Display="STRING" IsSecret="true" >
|
|
<Name Lang="DE">Passwort</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="backupDateTime" Name="Backup date" Display="STRING">
|
|
<Name Lang="DE">Sicherungsdatum </Name>
|
|
</ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
|
|
</QuickAction-Server>-->
|
|
|
|
<QuickAction-Server Category="Intune" Action="GetBitlockerKeyTest" ParamaterType ="deviceId" Name="Get BitlockerKeyTest" InformationClass="Computer" Section ="Intune" Id="5123e4f8-e183-428f-bff1-b3e2afdfc745">
|
|
<Name Lang="DE">Test:Bitlocker Schlüssel anzeigen</Name>
|
|
<Name Lang="EN">Test:Show Bitlocker recoverykey</Name>
|
|
|
|
<Description Lang="DE">BitLocker-Schlüssel</Description>
|
|
<Description Lang="EN">Bitlocker recoverykey</Description>
|
|
|
|
<Icon IconType="material" Name="ic_vpn_key" />
|
|
|
|
<ColumnOutputFormattings>
|
|
<ColumnOutputFormatting ValueName="key" Name="BitlockerKey" Display="STRING" IsSecret="true">
|
|
<Name Lang="DE">BitLocker-Schlüssel</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="volumeType" Name="Volume Type" Translation ="bitlocker_volume" Display="STRING">
|
|
<Name Lang="DE">Laufwerkstyp</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="createdDateTime" Name="Created date" Display="STRING">
|
|
<Name Lang="DE">Erstellungsdatum </Name>
|
|
</ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
</QuickAction-Server>
|
|
|
|
<QuickAction-Server Category="Intune" Action="GetLapsKeyTest" ParamaterType ="deviceId" Name="Get LAPSTest" InformationClass="Computer" Section ="Intune" Id="e0446b95-81b6-4a62-82cf-7c14988957ba" >
|
|
<Name Lang="DE">Test:LAPS Passwort anzeigen</Name>
|
|
<Name Lang="EN">Test:Show LAPS Password</Name>
|
|
|
|
<Description Lang="DE">Test:LAPS Passwort anzeigen</Description>
|
|
<Description Lang="EN">Test:Show LAPS Password</Description>
|
|
|
|
<Icon IconType="material" Name="ic_vpn_key" />
|
|
|
|
<ColumnOutputFormattings>
|
|
<ColumnOutputFormatting ValueName="accountName" Name="Accountname" Display="STRING">
|
|
<Name Lang="DE">Kontoname</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="passwordBase64" Name="Password" Display="STRING" IsSecret="true" >
|
|
<Name Lang="DE">Passwort</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="backupDateTime" Name="Backup date" Display="STRING">
|
|
<Name Lang="DE">Sicherungsdatum </Name>
|
|
</ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
|
|
</QuickAction-Server>
|
|
|
|
<!--<QuickAction-Server Category="Intune" Action="ChangeManagedStatus" Name="Change ManagedStatus" ParamaterType ="deviceId" InformationClass="Computer" Section ="Intune" Id="d35a9094-8068-483c-a58d-ab787657987a">
|
|
<Name Lang="DE">Verwaltungsstatus ändern</Name>
|
|
<Name Lang="EN">Change managed state</Name>
|
|
|
|
<Description Lang="DE">Verwaltungsstatus ändern</Description>
|
|
<Description Lang="EN">Change managed state</Description>
|
|
|
|
<Icon IconType="material" Name="ic_school" />
|
|
|
|
<AdjustableParameters>
|
|
<AdjustableParameter-DropDown Name="Select State" ParameterName="State" Default="$null">
|
|
<Name Lang="DE">Wähle ein Status aus</Name>
|
|
<AdjustableParameter-DropDownValue Value="retire">
|
|
<AdjustableParameter-DropDownDisplayValue Lang="DE">Zurückziehen</AdjustableParameter-DropDownDisplayValue>
|
|
</AdjustableParameter-DropDownValue>
|
|
<AdjustableParameter-DropDownValue Value="wipe">
|
|
<AdjustableParameter-DropDownDisplayValue Lang="DE">Bereinigen</AdjustableParameter-DropDownDisplayValue>
|
|
</AdjustableParameter-DropDownValue>
|
|
<AdjustableParameter-DropDownValue Value="delete">
|
|
<AdjustableParameter-DropDownDisplayValue Lang="DE">Löschen</AdjustableParameter-DropDownDisplayValue>
|
|
</AdjustableParameter-DropDownValue>
|
|
</AdjustableParameter-DropDown>
|
|
</AdjustableParameters>
|
|
</QuickAction-Server>-->
|
|
<QuickAction-Server Category="Intune" Action="UpdateComplianceState" Name="Update ComplianceState" ParamaterType ="deviceId" InformationClass="MobileDevice" Section ="MobileDevice" Id="bc98eabc-353f-4866-bab0-681aafe48d7b">
|
|
<Name Lang="DE">Intune Komformitätsstatus erzwingen</Name>
|
|
<Name Lang="EN">Enforce Intune compliance state</Name>
|
|
<Description Lang="DE">Komformitätsstatus aktualisieren</Description>
|
|
<Description Lang="EN">Update compliance state</Description>
|
|
<Icon IconType="material" Name="ic_verified_user" />
|
|
</QuickAction-Server>
|
|
|
|
<QuickAction-Server Category="Intune" Action="GetManagedApps" Name="Get Managed Apps" ParamaterType ="deviceId" InformationClass="MobileDevice" Section ="MobileDevice" Id="e798637e-a315-4d88-aec8-e6f22f9f70c7" >
|
|
<Name Lang="DE">Verwaltete Anwendungen anzeigen</Name>
|
|
<Name Lang="EN">Show managed applications</Name>
|
|
|
|
<Description Lang="DE">Verwaltete Anwendungen anzeigen</Description>
|
|
<Description Lang="EN">Show managed apps</Description>
|
|
|
|
<Icon IconType="material" Name="ic_widgets"/>
|
|
|
|
<ColumnOutputFormattings>
|
|
|
|
<ColumnOutputFormatting ValueName="displayName" Name="AppName" Display="STRING">
|
|
<Name Lang="DE">App Name</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="platform" Name="Platform" Display="STRING">
|
|
<Name Lang="DE">Platform</Name>
|
|
</ColumnOutputFormatting>
|
|
<ColumnOutputFormatting ValueName="version" Name="Version" Display="STRING">
|
|
<Name Lang="DE">Version</Name>
|
|
</ColumnOutputFormatting>
|
|
</ColumnOutputFormattings>
|
|
</QuickAction-Server>
|
|
|
|
<QuickAction-Local-WebRequest InformationClass="MobileDevice" Name="Open Intune (web)" RunImmediate="true" CheckNamedParameter="IntuneDeviceId" Section="MobileDevice" Id="fc162f02-286d-48ce-a9ec-94118e62b735">
|
|
<Name Lang="DE">Intune Webseite öffnen</Name>
|
|
<AlternativeDescription Lang="EN">This Quick Action requires information about the "Device".</AlternativeDescription>
|
|
<AlternativeDescription Lang="DE">Um diese Quick Action verwenden zu können werden Informationen über das "Gerät" benötigt.</AlternativeDescription>
|
|
<Icon IconType="material" Name="ic_open_in_browser" />
|
|
<QueryString>https://intune.microsoft.com/#view/Microsoft_Intune_Devices/DeviceSettingsMenuBlade/~/overview/mdmDeviceId/PARAM_DeviceId</QueryString>
|
|
<QueryParameter Name="PARAM_DeviceId" ParameterName="IntuneDeviceId" />
|
|
</QuickAction-Local-WebRequest>
|
|
|
|
|
|
<QuickAction-Server Category="Citrix" Action="SessionLogoff" ParamaterType ="sessionId" CheckNamedParameter="VirtualSessionStatus" Name="Session Logoff" InformationClass="VirtuelSession" Section ="Citrix" Id="da4662c3-1988-413a-a834-aec81508a8d1">
|
|
<Name Lang="DE">Session abmelden</Name>
|
|
<Name Lang="EN">Session logoff</Name>
|
|
<Description Lang="DE">Session Abmelden</Description>
|
|
<Description Lang="EN">Session Logoff</Description>
|
|
<Icon IconType="material" Name="ic_vpn_key" />
|
|
<CheckNamedParameterValues>
|
|
<CheckNamedParameterValue>5</CheckNamedParameterValue>
|
|
</CheckNamedParameterValues>
|
|
</QuickAction-Server>
|
|
|
|
<QuickAction-Server Category="Citrix" Action="SessionHidden" ParamaterType ="sessionId" CheckNamedParameter="VirtualSessionStatus" Name="Session Hidden" InformationClass="VirtuelSession" Section ="Citrix" Id="be8bbe9d-a9a2-4c72-9fbb-4b7feb502388">
|
|
<Name Lang="DE">Session verstecken</Name>
|
|
<Name Lang="EN">Session hidden</Name>
|
|
<Description Lang="DE">Session verstecken</Description>
|
|
<Description Lang="EN">Session hidden</Description>
|
|
<Icon IconType="material" Name="ic_vpn_key" />
|
|
<CheckNamedParameterValues>
|
|
<CheckNamedParameterValue>5</CheckNamedParameterValue>
|
|
</CheckNamedParameterValues>
|
|
</QuickAction-Server>
|
|
|
|
<QuickAction-Server Category="Citrix" Action="SendMessageToSession" ParamaterType ="sessionId" CheckNamedParameter="VirtualSessionStatus" Name="Send Message to Session" InformationClass="VirtuelSession" Section ="Citrix" Id="b7d197ef-f690-4a25-9dea-d2cf68df98b6">
|
|
<Name Lang="DE">Nachricht senden zu Session</Name>
|
|
<Name Lang="EN">Send Message to Session</Name>
|
|
|
|
<Description Lang="DE">Nachricht senden zu Session</Description>
|
|
<Description Lang="EN">Send Message to Session</Description>
|
|
<Icon IconType="material" Name="ic_vpn_key" />
|
|
<CheckNamedParameterValues>
|
|
<CheckNamedParameterValue>5</CheckNamedParameterValue>
|
|
</CheckNamedParameterValues>
|
|
</QuickAction-Server>
|
|
</QuickActions>
|
|
</F4SD-QuickAction-Configuration> |