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

Luis Gustavo

@Luis Gustavo

0
Reputation
12
Profile views
3
Posts
0
Followers
0
Following
Joined Feb 18, 2021, 2:36 PM Last Online Aug 1, 2021, 11:49 PM

Luis Gustavo Unfollow Follow

Latest posts made by Luis Gustavo

  • RE: Corsair RGB Keyboard and Mousepad turn lights off when Samsung monitor is turned off

    You should try this one instead:

    (Add-Type '[DllImport("user32.dll")]public static extern int SendMessage(int hWnd, int hMsg, int wParam, int lParam);' -Name a -Pas)::SendMessage(-1,0x0112,0xF170,2)
    

    Or, you can use a Powershell script like this:

    Add-Type -TypeDefinition '
    using System;
    using System.Runtime.InteropServices;
     
    namespace Utilities {
       public static class Display
       {
          [DllImport("user32.dll", CharSet = CharSet.Auto)]
          private static extern IntPtr SendMessage(
             IntPtr hWnd,
             UInt32 Msg,
             IntPtr wParam,
             IntPtr lParam
          );
     
          public static void PowerOff ()
          {
             SendMessage(
                (IntPtr)0xffff, // HWND_BROADCAST
                0x0112,         // WM_SYSCOMMAND
                (IntPtr)0xf170, // SC_MONITORPOWER
                (IntPtr)0x0002  // POWER_OFF
             );
          }
       }
    }
    '
    
    [Utilities.Display]::PowerOff()
    posted in General Discussion
    L
    Luis Gustavo
    Feb 25, 2021, 2:47 PM
  • RE: Best price for other countries

    Actually i'ts terrible expansive, as a comparison the minimum wage in USA is 7.25 USD (02-2021), while in Brazil is 1.2 USD (02-2021), ~604.16% more. So thinking about it, a fair price would be around 3.3 USD, equivalent of ~16.55% the original value.

    posted in General Discussion
    L
    Luis Gustavo
    Feb 18, 2021, 3:05 PM
  • RE: It works just perfect, but Brazilian Portuguese sentences are weird

    The correct structure would be:

    Alexa, execute notepad com o parĂ¢metro X.

    posted in General Discussion
    L
    Luis Gustavo
    Feb 18, 2021, 2:43 PM