Jump to content

Phalebus

Member
  • Posts

    3
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Australia

Posts posted by Phalebus

  1. recently i started to have problem with my VPN connection in windows 7. it started after i installed g-data antivirus, my vpn connection gets disconnected and then i cant reconnect. it says "the remote connection was not made because of the name of the remote access server did not resolve".

    so i cantacted g-data support services via an email and no response after a week even though i have purchase their product less than 2 weeks ago(one of my worst purchases ever).

    anyway, how can i fix this? i have also disabled the Network scanning part of g-data.

    Edit: the problem goes away if i restart the computer.

    G Data Anti-Virus? What is that brand. I have never even heard of it before...

  2. Howdy Guys,

    Stumbled across the forums today, and I was impressed at the sheer collection of information available at my finger tips! I've been a Network Systems Administrator for a a short time now, and this site will help with alot of the questions I may have. Most of the scripts I have created for my organization rely on the fact that I have a bit of an understanding for batch, java and vbs scripting, but there are times when Google is a life saver. I've been playing with computers since I was 10 and started on servers when I was 13 starting with NT4.0 Server <-- Good times... I have been out of Uni here in Australia for about a year now and I have completed my MCDST, MCSA and MCSE. I'm currently studying Linux coding in my spare time (Our company runs on W2K3 and Red Hat).

    Should you have any queries please feel free to shoot me a question, as I'm more then willing to lend a helping hand!

    Phalebus

  3. Hi George,

    I have a script that I have created that disabled all UAC notifications. You must run this script as the local administrator of your pc.


    @ECHO OFF
    ECHO This script will disable UAC on Windows 7 and Windows Vista machines. Created by Michael Perks 2010
    ECHO ------------------------------------------------------------------
    ECHO Disabling UAC Now
    %windir%\System32\cmd.exe /k %windir%\System32\reg.exe ADD HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f
    ECHO UAC Disabling Complete
    ECHO ------------------------------------------------------------------
    ECHO UAC Elevation of privileges
    %windir%\System32\cmd.exe /k %windir%\System32\reg.exe ADD HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v ConsentPromptBehaviorAdmin /t REG_DWORD /d 0 /f
    PAUSE
    ECHO Elevation Complete
    ECHO UAC Disabled
    Pause
    Exit

    If command prompt stop's at the start waiting for a new command to be typed in, just type in "exit". You need to save this into a batch script file i.e UACdisable.bat

    Any issues at all give me a yell!

    Phalebus

×
×
  • Create New...