Requests
Request a script
101 topics in this forum
-
My predecessor had created a script that would install a desktop link to our help desk. We no longer use this solution and I want to have the shortcut removed from every device. I can't seem to find a script to do this. I hope someone could help. This is the script that he had used: @echo off md C:\icon copy "\\edmws001\image\Nortrux_Helpdesk_icon.ico" "c:\icon" icacls "C:\Users\Public\Desktop\Nortrux IT Help Desk.lnk" /inheritance:r /grant Administrators:F icacls "C:\Users\Public\Desktop\Nortrux IT Help Desk.lnk" /inheritance:r /grant Users:F icacls "C:\Users\Public\Desktop\Nortrux IT Help Desk.lnk" /inheritance:r /grant INTERACTIVE:F attrib -R "C:…
-
- 1 reply
- 3.9k views
-
-
Hi, Is there a cmd (shell/terminal) that I can run via a script within Pulseway to copy a folder with locked files within the same hard-drive? In this case I need to copy the Quickbooks folder. I do not want to use a 3rd party software. Thanks for the help.
-
- 1 reply
- 3.9k views
-
-
I would like a script that would allow me to lock the pulseway agent so changes cant be made, without me having to go to each computer to lock it.
-
- 2 replies
- 3.8k views
- 1 follower
-
-
Looking for a script that I can run to drop from XXX domain, set to "WORKGROUP" and reboot. I used to have this in a command line form that I can't find.
-
- 2 replies
- 3.7k views
- 1 follower
-
-
Does anyone have a script to run ccleaner. It’s already installed on the workstations I want to be able to run it. Thank you
- 3 replies
- 3.7k views
- 1 follower
-
Hello, I'm on Windows 10 Pro running Pulseway and have Hyper-V with a few VMs. Is there a way I could start/stop one of the VMs from the Android app using a script?
-
- 2 replies
- 3.7k views
- 1 follower
-
-
I have been beating my head against this for a while. I can these commands locally and they work fine, but when I use Pulseway they throw errors on the variable for the username. I have tried running all in one script from powershell and I have broke it up in to two scripts the first 2 line being in powershell (which works as intended) and the second line in batch (also tried running manually from terminal). Im sure there is something small I am doing wrong and I would appreciate the help, thanks $user= get-wmiobject-class win32_computersystem | select-object username wmic UserAccount where name=$User set Passwordexpires=true net user $env:USERNAME /logonpas…
- 4 replies
- 3.6k views
- 1 follower
-
Does anyone have an update script for making and removing snapshots in VMware? I would like to use it together with Windows update scripts to search and install updates.
-
- 1 reply
- 3.6k views
- 1 follower
-
-
Hi All, So since there was an update in Windows 10 it seems I have many computers that don't show all the other computers on the network. (Windows Workgroup) I use the UVK tool on a regular basis for general repairs and they have a script that works great to repair this, however I cannot get access to just that particular script as it is coded in the tool. Does anyone know if there is a script I can upload to Pulseway that will perform the same repair? Thanks, Pete
-
- 3 replies
- 3.6k views
-
-
I am trying to upgrade some software using PowerShell and I am not sure if my parameters are correctly formatted . See highlighted text # Silent Install Secure Secure Authentication # http://repository.eset.com/v1/com/eset/apps/business/esa/windows/v2/2.7.32.0/esa_nt64_enu.msi # Path for the workdir $workdir = "c:\scripts\" # Check if work directory exists if not create it If (Test-Path -Path $workdir -PathType Container) { Write-Host "$workdir already exists" -ForegroundColor Red} ELSE { New-Item -Path $workdir -ItemType directory } # Download the installer $source = "http://repository.eset.com/v1/com/eset/apps/business/es…
-
- 0 replies
- 3.5k views
-
-
-
Is it possible to have a Screen View of a set of PCs emailed on a daily basis? I see the the script for starting screen view, but how can I capture the view and then email it out automatically?
-
- 3 replies
- 3.4k views
- 1 follower
-
-
With OES2018 based on SLES12sp2, the /etc/issue file pulseway uses to check Linux OS release now states "MicroFocus Open Enterprise Server " instead of "SUSE Linux Enterprise Server" like previous OES releases. Please add the below to your linux built in scripts for detecting MicroFocus/Suse based os detect_os "MicroFocus" && echo "Found MicroFocus" && zypper_update && return
- 3 replies
- 3.4k views
-
Hi there, Just wondering if this is an option. I attempted to do the following with batch, but didn't work due to the %appdata% value resolving to somewhere in C:\Windows. mkdir %appdata%\Microsoft\Teams\Backgrounds\Uploads copy "\\SERVER\SHARE\Teams Backup Images\*.jpg" %appdata%\Microsoft\Teams\Backgrounds\Uploads /y Any ideas? Cheers, Joe
-
- 3 replies
- 3.4k views
-
-
Hi, I created a script to basically inform the customer (they have to click ok to start it) then perform a bunch of maintenance things once per week. I tried it but none of it seems to be working, even my pop-up command doesnt seem to be working when i run a script with just that, ideas? #inform customer and enable pulseway maintenance mode Add-Type -AssemblyName PresentationFramework [System.Windows.MessageBox]::Show('FarSide Tech Repairs - Automated Monthly Maintenance will begin. Your system may restart. Please save any work and leave computer idle. Press OK to continue.') Set-ItemProperty -Path "HKLM:\Software\MMSOFT Design\PC Monitor" -Name "MaintenanceMode…
-
- 1 reply
- 3.3k views
-
-
Does anyone have a script or something they use/can recommend to pull internet browser history/usage? When I used Continuum, this was a feature in reports.. but i've not had any luck finding anything like it with Pulseway.
-
- 1 reply
- 3.3k views
-
-
Hi all, I am working on setting up monitoring for client backups using Arcserve Backup and Arcserve UDP. Before I get started, does anyone have any work on this type of monitoring they want to share to save me some work? Thank you, Gary
- 2 replies
- 3.3k views
-
I would very much like to see some Arch Linux scripts added or at least include Arch compatibility in the existing Linux scripts. Updating my Arch systems from my phone with a single click would be pretty slick.
-
- 1 reply
- 3.3k views
-
-
Hi Pulseway members, After deploying the Chocolatey Package manager on an endpoint via the CLI, a new shell session is required in order to actually run chocolately commands... How can I ask the Pulseway agent to connect to a new CLI session? Thanks,
-
- 2 replies
- 3.3k views
-
-
Trying to get a custom script to obtain system uptime in hours and if uptime is greater than 24 hours send a console message to logged in user. Here is what I have so far, but the $Final variable will not populate properly. Also would like to pass the final uptime to an output variable which is tied to a custom field (system level) for use in workflows. Any help would be greatly appreciated
-
- 3 replies
- 3.2k views
- 1 follower
-
-
Hi is there a feature or plans to add so that we can run a report of remote access per machine with time and date stamp
-
- 1 reply
- 3.2k views
-
-
I want to be able to start a program in full screen from android app, for example kodi.exe
-
- 1 reply
- 3.2k views
-
-
Hi. I am making an Automation Script that updates a custom plugin-file, that might is always be in use, to a newer version. If the plugin doesn't already exist everything works fine. But if it already exist it cannot be overwritten, because the Pulseway Service (and managers, if any are running) is using the file. My solution is to stop the service, overwrite the file and start the service. It works very well when executing manually in ISE, but not when executed as an Automation Script from Pulseway. It looks like the entire script is terminated when the service stops, and the execution doesn't return anything in execution history - no…
-
- 3 replies
- 3.1k views
-
-
Hi, i do own a small buisness and we are using Pulseway to monitor all our client computers and servers. But there are so much potential in monitoring and we are not using it. I would normaly dig in and find all the solutions to our requests myself - but time is very limited with the daily work and i quite get used to hire experts insted of "try and error" all the way to solutions myself. What we want: - A Report where all Windows Versions Numbers are listed (to see if there all up to date, eg. Version 1709 Build 162.99.192) - A Report to find specific software and corresponding numbers (eg. find old java/flash/adobe versions, eg, find specific software o…
-
- 2 replies
- 3.1k views
-
-
Good morning, I was wondering if anyone has a solution for Pulseway to install .exe files to remote clients. We need to push Screen Connect and Malwarebytes Enterprise to some of our clients with the Pulssway client installed. The Screen Connect tool is great because it allows you to directly upload the .exe to the SC server and then push it out to any machine with the SC client. I hope Pulseway implements this soon.
-
- 3 replies
- 3.1k views
-