TRIGGERcmd
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. Zeddy
    3. Best
    • Profile
    • Following 1
    • Followers 0
    • Topics 3
    • Posts 3
    • Best 2
    • Controversial 0
    • Groups 0

    Best posts made by Zeddy

    • Increase / Decrease Brightness

      Very useful for me.
      Copy both as separate triggers (you can adjust % of the brightness).

      ________________________________________________________________________

      Trigger:

      Increase Brightness (100%)

      Command:

       powershell (Get-WmiObject -Namespace root/WMI -Class WmiMonitorBrightnessMethods).WmiSetBrightness(1,100)
      

      ________________________________________________________________________

      Trigger:

      Decrease Brightness (70%)

      Command:

       powershell (Get-WmiObject -Namespace root/WMI -Class WmiMonitorBrightnessMethods).WmiSetBrightness(1,70)
      

      Have a nice day ~

      posted in Windows
      ZeddyZ
      Zeddy
    • Close All Opened Windows

      Very useful for me, just copy and paste:

      Trigger:

      Close All

      Command:

      powershell -command "(New-Object -comObject Shell.Application).Windows() | foreach-object {$_.quit()}; Get-Process | Where-Object {$_.MainWindowTitle -ne \"\"} | stop-process"
      

      Have a nice day ~

      posted in Windows
      ZeddyZ
      Zeddy