Jump to content

David

Members
  • Posts

    58
  • Joined

  • Last visited

Reputation Activity

  1. Like
    David reacted to Chris in Patch Management failure   
    Hi @David,
    For more details why is this error reported, please check the WindowsUpdate.log file. If there are any errors in this process, then Pulseway will report that there was some Errors.
  2. Like
    David reacted to Paul in This is not 2FA   
    Hey everyone,
    I'm excited to announce that we are working on Push-based and OTP-based 2FA as we speak. This is going to be super-awesome !
    -Paul
  3. Upvote
    David reacted to cmiller in This is not 2FA   
    Would love to have 2FA via google authenticator.  
  4. Upvote
    David got a reaction from BartB in Pushing or copying applications and files to client machines   
    marinhd, I know they have plans to add a file transfer tool to the Remote Desktop application but there is nothing to stop you scripting the download from a public URL. Or, if you prefer to use a private repo, Chocolately allows this.
  5. Upvote
    David reacted to dpbklyn in Two Feature Requests   
    Here are two feature requests:
    1. The ability to Clone Tasks
    2. The ability to move Scripts from one folder to another
    Thank you!
  6. Upvote
    David reacted to theitdept in Chat feature   
    A chat session notification would be useful.
  7. Like
    David got a reaction from Paul in Edit button appears broken   
    Fixed!
    Thanks, team.
  8. Like
    David reacted to Marius in WebRoot Security Awareness Training   
    The product is aimed at all people across the business to give them an understanding of how to keep themselves, other people, the data and systems they have access to safe at all times. It’s easy to manage and allows you to simply set up campaigns and auto schedule the delivery dates reducing the amount of time you need to spend managing it.
    To ensure success, training must be ongoing throughout an employee’s tenure with the company.
    “93% of breaches are initiated by phishing, and 22% of employees have clicked at least one phishing link in the last year”
     
    Webroot have found the below changes in user behavior after repeat campaigns.
    1. Companies that ran between 1-5 campaigns saw a phishing click through rate of 33%.
    2. Companies that ran 6-10 campaigns dropped the rate to 28%.
    3. Companies that ran 11 or more campaigns reduced the rate to 13%.
  9. Upvote
    David got a reaction from AGrolleman in Edit button appears broken   
    Hi,
    Policies --> Policy Editor --> Notifications --> Event Log
    To then edit a specific filter, the button does nothing at all...
    Regards,
  10. Upvote
    David got a reaction from Matt Wilson in IT Documentation   
    I've just started using SI Portal. It's a bit clunky and the Android app is not great but it's cost effective for a sole-trader and it works.
  11. Thanks
    David reacted to Quenten Grasso in Change System Group Script   
    Hi,
    So as I start to get used to Pulseway, here's quick script I've made up to change the *Nix/Win computer group on the fly. I haven't yet found an easier way to do it yet.  This seems to work for me so hopefully it helps someone else.

    I've just created a Script Category and added a version of this script per customer/group in this folder.  So create your script edit the Group below to suite your requirements.
    Linux/Bash Tab
    #!/bin/bash if [ -f /bin/sed ] then cp /etc/pulseway/config.xml /etc/pulseway/config.xml.backup /bin/sed -i '/<ComputerInformation Name="" Group="/c\<ComputerInformation Name="" Group="My Company - Linux Servers"/>' /etc/pulseway/config.xml else echo "Sed not found!" fi Windows/Powershell Tab
    Set-ItemProperty -Path "HKLM:\Software\MMSOFT Design\PC Monitor\" -Name GroupName -Value "My Company - Windows Servers"  
  12. Upvote
    David reacted to gbirdsong in CCleaner   
    Would it be possible to do alternative to CCleaner? Like Clean temp files etc.  But a script that replaces needing ccleaner many end-points it can get expensive.
  13. Upvote
    David reacted to kavaa in Install Adobe Reader DC with PowerShell   
    I made a install script for Adobe Reader DC to do a Silent install.
    UPDATED VERSION 2 With auto detect if Invoke-WebRequest exists
    Improvements are welcome!
    Change the version if needed in the Source URL: http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1502320053/AcroRdrDC1502320053_en_US.exe
    # Silent install Adobe Reader DC # https://get.adobe.com/nl/reader/enterprise/ # Path for the workdir $workdir = "c:\installer\" # 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://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1502320053/AcroRdrDC1502320053_en_US.exe" $destination = "$workdir\adobeDC.exe" Invoke-WebRequest $source -OutFile $destination # Start the installation Start-Process -FilePath "$workdir\adobeDC.exe" -ArgumentList "/sPB /rs" # Wait XX Seconds for the installation to finish Start-Sleep -s 35 # Remove the installer rm -Force $workdir\adobe* For Windows 7 please change 
    $source = "http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1502320053/AcroRdrDC1502320053_en_US.exe" $destination = "$workdir\adobeDC.exe" Invoke-WebRequest $source -OutFile $destination To
    $WebClient = New-Object System.Net.WebClient $WebClient.DownloadFile("http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1502320053/AcroRdrDC1502320053_en_US.exe","$workdir\adobeDC.exe") Since Powershell in Windows 7 does not support the Invoke-WebRequest
×
×
  • Create New...