Quick Start

Get familiar with Attune to create your first job

Download Attune
the Desktop Application.

Download Attune

To automate
Windows node you need to configure and enable a few settings.

  1. Open PowerShell as an Administrator on your host machine.
  2. Enable WinRM, type:
    Enable-PSRemoting -SkipNetworkProfileCheck -Force
  3. Replace the listener with a HTTPS one and generate a certificate, type:
    Remove-Item -Path WSMan:\Localhost\listener\listener* -Recurse;
    New-Item -Path WSMan:\LocalHost\Listener `
    -Transport HTTPS `
    -Address * `
    -CertificateThumbPrint `
    (New-SelfSignedCertificate `
    -CertstoreLocation Cert:\LocalMachine\My `
    -DnsName $env:computername `
    -NotAfter (get-date).AddYears(6)).Thumbprint `
    -Force
  4. Add a Firewall rule to only listen to Attune, type:
    New-NetFirewallRule -DisplayName 'WinRM HTTPS' `
    -Name 'WinRM_HTTPS' `
    -Profile Any `
    -LocalPort 5986 `
    -Protocol TCP `
    -RemoteAddress 127.0.0.1
  5. Enable File and Print sharing, type:
    Get-NetFirewallRule -DisplayGroup 'File and Printer Sharing' | Set-NetFirewallRule -Profile 'Private, Domain' -Enabled true
    
    dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
    
    dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
  6. Restart your machine to apply the changes.

Attune Documentation

18th Jun 2021
Setup WinRM Via AD
Setting up WinRM via Active Directory: Objective This procedure provides instructions to automatically enable WinRM with HTTPS via Active Directory group policies. Attune uses WinRM…
Read More
18th Jun 2021
Setup WinRM, CIFS Manually
Objective This procedure will set up a Windows desktop or server to allow connections and Automation from Attune. This is done via enabling Windows File…
Read More
18th Jun 2021
Referencing values in Scripts
All Variables have the same basic attributes regardless of their type. The Values that are mapped onto the Variables in the Plan are different –…
Read More