Results 1 to 3 of 3

Hybrid View

  1. #1
    EndRiT's Avatar
    Join Date
    Dec 2005
    Gender
    male
    Location
    USSR
    Posts
    12,751
    Reputation
    170
    Thanks
    4,294,967,295

    Glass CMD in Vista in Windows 7.

    Glass CMD for Vista
    a small AutoIt Script that enables aero on the background of the cmd window.

    How to use:

    1) Just run it.

    Note:
    Works for Windows 7 and Vista only.

    Screenshot:
    [img]https://www.**********/image/70600/cmd.png[/img]

    Source Code so far:
    Code:
    #NoTrayIcon
    #include <WinAPI.au3>
    #include <Constants.au3>
    #include <WindowsConstants.au3>
    $ProcessID = Run(@SystemDir & "\cmd.exe","",@SW_HIDE)
    WinWait("[CLASS:ConsoleWindowClass]")
    $hWnd = WinGetHandle("[CLASS:ConsoleWindowClass]") 
    EnableBlurBehind($hWnd)
    WinSetState($hWnd,"",@SW_SHOW)
    Func EnableBlurBehind($hWnd)
        If @OSVersion <> "WIN_VISTA" Then
            MsgBox(16, "EnableBlurBehind", "You are not running Vista!")
            Return
        Else
            Const $DWM_BB_ENABLE = 0x00000001
            Const $DWM_BB_BLURREGION = 0x00000002
            Const $DWM_BB_TRANSITIONONMAXIMIZED = 0x00000004
            $Struct = DllStructCreate("dword;int;ptr;int")
            DllStructSetData($Struct,1,$DWM_BB_ENABLE)
            DllStructSetData($Struct,2,"1")
            DllStructSetData($Struct,4,"1")
            DllCall("dwmapi.dll","int","DwmEnableBlurBehindWindow","hwnd",$hWnd,"ptr",DllStructGetPtr($Struct))
            EndIf
    EndFunc

  2. #2
    arunforce's Avatar
    Join Date
    Dec 2005
    Gender
    male
    Location
    A place for amigos
    Posts
    24,703
    Reputation
    4747
    Thanks
    12,562
    My Mood
    Yeehaw
    That's pweeeeeeeeety



    BRING BACK BT, BRING BACK SAGA, BRING BACK VF, BRING BACK MPGHCRAFT, BRING BACK HABAMON


  3. #3
    EndRiT's Avatar
    Join Date
    Dec 2005
    Gender
    male
    Location
    USSR
    Posts
    12,751
    Reputation
    170
    Thanks
    4,294,967,295
    Download gogogogogogoo

Similar Threads

  1. Windows Vista to Windows 7
    By vondony in forum Programming Tutorial Requests
    Replies: 4
    Last Post: 03-13-2010, 01:18 AM
  2. How do i know if a hack work/will work on window Vista or window 7?
    By lockster in forum CrossFire Hacks & Cheats
    Replies: 9
    Last Post: 12-03-2009, 04:10 AM
  3. [Release] Vista 64/Windows 7 Injector
    By pretli in forum WarRock - International Hacks
    Replies: 4
    Last Post: 10-02-2009, 03:00 PM
  4. Windos Vista To Windows Se7en
    By Tierrize in forum General
    Replies: 25
    Last Post: 09-13-2009, 11:21 PM
  5. chams for vista and windows 7
    By Deceber in forum Combat Arms Hacks & Cheats
    Replies: 14
    Last Post: 08-26-2009, 11:00 PM

Tags for this Thread