mirror of
https://github.com/snazy2000/SnipeitPS.git
synced 2025-12-13 18:02:30 +00:00
38 lines
1.6 KiB
PowerShell
38 lines
1.6 KiB
PowerShell
Function Get-SnipeitAlias(){
|
|
@{'Get-Asset' = 'Get-SnipeitAsset';
|
|
'Get-AssetMaintenance' = 'Get-SnipeitAssetMaintenance';
|
|
'Get-Category' = 'Get-SnipeitCategory';
|
|
'Get-Company' = 'Get-SnipeitCompany';
|
|
'Get-Component' = 'Get-SnipeitCompany';
|
|
'Get-CustomField' = 'Get-SnipeitCustomField';
|
|
'Get-Department' = 'Get-SnipeitDepartment';
|
|
'Get-Fieldset' = 'Get-SnipeitFieldset';
|
|
'Get-Manufacturer' = 'Get-SnipeitManufacturer';
|
|
'Get-Model' = 'Get-SnipeitModel';
|
|
'Get-Status' = 'Get-SnipeitStatus';
|
|
'Get-Supplier' = 'Get-SnipeitSupplier';
|
|
'Get-User' = 'Get-SnipeitUser';
|
|
'New-Asset' = 'New-SnipeitAsset';
|
|
'New-AssetMaintenance' = 'New-SnipeitAssetMaintenance';
|
|
'New-Category' = 'New-SnipeitCategory';
|
|
'New-Component' = 'New-SnipeitComponent';
|
|
'New-CustomField' = 'New-SnipeitCustomField';
|
|
'New-Department' = 'New-SnipeitDepartment';
|
|
'New-License' = 'New-SnipeitLicense';
|
|
'Set-License' = 'Set-SnipeitLicense';
|
|
'New-Location' = 'New-SnipeitLocation';
|
|
'New-Manufacturer' = 'New-SnipeitManufacturer';
|
|
'New-Model' = 'New-SnipeitModel';
|
|
'New-User' = 'New-SnipeitUser';
|
|
'Set-Asset' = 'Set-SnipeitAsset';
|
|
'Set-AssetOwner' = 'Set-SnipeitAssetOwner';
|
|
'Set-Component' = 'Set-SnipeitComponent';
|
|
'Set-Model' = 'Set-SnipeitModel';
|
|
'Set-Info' = 'Set-SnipeitInfo';
|
|
'Set-User' = 'Set-SnipeitUser';
|
|
'New-Accessory' = 'New-SnipeitAccessory';
|
|
'Set-Accessory' = 'Set-SnipeitAccessory';
|
|
'Get-Accessory' = 'Get-SnipeitAccessory';
|
|
'Remove-Asset' = 'Remove-SnipeitAsset';
|
|
'Remove-User' = 'Remove-SnipeitUser';}
|
|
}
|