Settings and activity
118 results found
-
4 votesUriel Sapir supported this idea ·
-
27 votesUriel Sapir supported this idea ·
-
13 votesUriel Sapir supported this idea ·
-
7 votes
Nice! The feature you requested is being
reviewed by our product team. We’ll keep an
eye on the number of votes, and let you know if
a decision is reached to implement. Thank you
for being a partner in our process!Uriel Sapir supported this idea · -
5 votesUriel Sapir supported this idea ·
-
4 votes
An error occurred while saving the comment -
20 votesUriel Sapir supported this idea ·
-
27 votesUriel Sapir supported this idea ·
-
76 votesUriel Sapir supported this idea ·
-
22 votesUriel Sapir supported this idea ·
-
42 votesUriel Sapir supported this idea ·
-
201 votesUriel Sapir supported this idea ·
-
586 votesUriel Sapir supported this idea ·
-
1 voteUriel Sapir shared this idea ·
-
261 votes
Nice! The feature you requested is being reviewed by our product team. We’ll keep an eye on the number of votes, and let you know if a decision is reached to implement. Thank you for being a partner in our process!
Uriel Sapir supported this idea · -
369 votes
Nice! The feature you requested is being reviewed by our product team. We’ll keep an eye on the number of votes, and let you know if a decision is reached to implement. Thank you for being a partner in our process!
Uriel Sapir supported this idea · -
372 votes
Hi, The feature idea you submitted is currently under review. Thanks for making your voice heard! We’ll keep a close watch on how many votes it gets and update you if we decide to develop it.
Uriel Sapir supported this idea · -
4 votesUriel Sapir shared this idea ·
-
4 votesUriel Sapir supported this idea ·
-
4 votesUriel Sapir supported this idea ·
Try the scrip below.
# Set the path of the folder to be created
$folderPath = "C:\Foldername\"
# Check if the folder already exists
if(!(Test-Path $folderPath)){
# If the folder does not exist, create it
New-Item -ItemType Directory -Path $folderPath
}
# Download image from AWS S3
# Define the URL of the image you want to download
$url = "https://s3.us" # Replace with the image URL you want to download
# Define the local file path where you want to save the image
$localFilePath = "C:\Foldername\"
# Create a web client object
$webClient = New-Object System.Net.WebClient
# Download the image from the URL to the local file path
$webClient.DownloadFile($url, $localFilePath)
# Create shurtcut for portl on the user desktop
# Define the URL of the webpage
$url = "http://ClientName.servicedesk.atera.com"
# Get the All Users desktop folder path
$desktopPath = [System.IO.Path]::Combine([System.Environment]::GetFolderPath("CommonDesktopDirectory"), "Customer Portal.lnk")
# Create a shell object
$shell = New-Object -ComObject WScript.Shell
# Create the shortcut
$shortcut = $shell.CreateShortcut($desktopPath)
# Set the properties of the shortcut
$shortcut.TargetPath = $url
$shortcut.WindowStyle = 1 # 1 = Normal window, 3 = Maximized
$shortcut.IconLocation = "C:\FoldeName\icon.ico" # Set the path to your custom icon (optional)
$shortcut.Description = "Shortcut to ClientName.servicedesk.atera.com" # Set the shortcut description (optional)
# Save the shortcut
$shortcut.Save()
# Clean up objects
$shell = $null
$shortcut = $null