Skip to content
View ZigaBobnar's full-sized avatar
  • Kranj, Slovenia

Organizations

@d0si
Block or Report

Block or report ZigaBobnar

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. d0si/vortex d0si/vortex Public

    Vortex framework project. Fast, extensible and easy to use backend framework

    C++ 3 1

  2. arduino-usb-midi-device arduino-usb-midi-device Public

    Use keyboard matrix with arduino and send MIDI commands via serial usb

    C++

  3. Registry modification to add "Run wi... Registry modification to add "Run without privilege elevation" to the windows context menu, making it possible to force programs that require admin privileges to run as current user
    1
    Windows Registry Editor Version 5.00
    2
    
                  
    3
    [HKEY_CLASSES_ROOT\*\shell\forcerunasinvoker]
    4
    @="Run without privilege elevation"
    5
    
                  
  4. Disable Windows Defender realtime mo... Disable Windows Defender realtime monitoring
    1
    # Self-elevate the script if required
    2
    if (-Not ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] 'Administrator')) {
    3
     if ([int](Get-CimInstance -Class Win32_OperatingSystem | Select-Object -ExpandProperty BuildNumber) -ge 6000) {
    4
      $CommandLine = "-File `"" + $MyInvocation.MyCommand.Path + "`" " + $MyInvocation.UnboundArguments
    5
      Start-Process -FilePath PowerShell.exe -Verb Runas -ArgumentList $CommandLine