don't work...pgmoney wrote:
http://www.advantig.com/files/scVista.zip
" Sorry, that page cannot be found "
don't work...pgmoney wrote:
http://www.advantig.com/files/scVista.zip
Pgmoney's link didn't work for me eitherJaleXNet wrote:don't work...pgmoney wrote:
http://www.advantig.com/files/scVista.zip
" Sorry, that page cannot be found "
Correct me if I am wrong, but VNC is OpenSource yes?With regards to the source, we are not going to be releasing it publicly for the time being as there is a company (which we bought our support software from) which would benefit from this allot and to be honest, we don’t want to do them any favours.
The file has been removed as scheduled, it won't be updated.JohnZS wrote:JaleXNet wrote:don't work...pgmoney wrote:
http://www.advantig.com/files/scVista.zip
" Sorry, that page cannot be found "
:(
perfect on Vista Ultimate...Caramel wrote:just cleaned my autoit version for realease..
- - uses radeon's aero.exe (renamed to aero_disable.exe as aero.exe has potential to conflict and 'taskkill /im aero.exe' could kill a process that we didn't mean to kill)
- - Disables 'PromptOnSecureDesktop' and also 'ConsentPromptBehaviorAdmin' (if user is an admin effectivly disables UAC till we disconnect - if user is 'user' UAC still prompts but is visable)
- - uses AutoIt (http://www.autoitscript.com) to package and drop (also detects vista at this point and runs the batch file accordingly)
Download:
- - The autoit wrapper allows for the exe to be replaced while you are connected (ie you can upgrade the sc_vnc.exe to include new helpdesk.txt or whatever)
http://sydflexi.dyndns.org/release/down ... ersion.zip
You had way too much spare time and nothing better to do anyway...JohnZS wrote:Why not remove the link instead of putting up some duff file with a txt in?
I tell you, it's enough to make you go mad downloading that file several times thinking it got truncated or something...
has helping people and working together with people ever come to mind for you pgmoney?pgmoney wrote:You had way too much spare time and nothing better to do anyway...JohnZS wrote:Why not remove the link instead of putting up some duff file with a txt in?
I tell you, it's enough to make you go mad downloading that file several times thinking it got truncated or something...
[/onlymod]John (aka Radeon? JohnZs? same? both?), if you're not John (*John & last name is in compiled Aero.exe) you need to recompile your program... Do you really feel repeatedly calling me "Pig" Money should put me in a more helping mood? There is not an "i" in my initials, and the auto-quote headers don't alter themselves. So somebody has way too much spare time if they have nothing better to do than change peoples names to something inflamatory...Radeon wrote:has helping people and working together with people ever come to mind for you pgmoney?
it seems not...
This is my last post on this subject, I'm Irish and this could really get out of hand if it continues.
Phil Money
Bundling GPL software with non-GPL software is not enough to "infect" the non-GPL software. However, linking makes the difference here. So if this had been linked, fine, you can contact www.gpl-violations.org then. However, they have a huge backlog already as far as I know. And by the way, there are more misconceptions about the GPL.JohnZS wrote:Correct me if I am wrong, but VNC is OpenSource yes?With regards to the source, we are not going to be releasing it publicly for the time being as there is a company (which we bought our support software from) which would benefit from this allot and to be honest, we don’t want to do them any favours.
How ARE bandits allowed to get away with this?.... VNC is OpenSource?!?
You had way too much spare time and nothing better to do anyway...
I don't think so, if we talk about the binaries with support, for example. They just have to make it available to their customers and the customers are free to share it under GPL. Problem is the same as with Redhat and CentOSJohnZS wrote:Radeon mentioned something about a company he purchased support software from which may benefit from Opensourced software. So if that company (or any other company) distributed software which was pretty much OpenSource software but they charged money for it (sold OpenSource Software), would they be in direct violation of the GPL?
ThanksOliver wrote:I don't think so, if we talk about the binaries with support, for example. They just have to make it available to their customers and the customers are free to share it under GPL. Problem is the same as with Redhat and CentOSJohnZS wrote:Radeon mentioned something about a company he purchased support software from which may benefit from Opensourced software. So if that company (or any other company) distributed software which was pretty much OpenSource software but they charged money for it (sold OpenSource Software), would they be in direct violation of the GPL?
I have included the scprompt.exe into the autoit build and modified the cmd to run it so all you have to do is download and unzip the zip from the link below:Is it possible for either Radeon or Caramel to modify their work to include something similar to what was created by dwalf? The original thread by dwalf can be found at the following...
Yer it is pretty magic the way it works. I tried yours and Radeon's Single Click on my Vista Machine x64 (Intel QX9xxxx based) you get a screen blank and an information bubble saying that the colour has been changed to Vista Basic.Caramel wrote:personally i have mine setup on a dyndns address so i just change that and point it to wherever i am.
i have not taken much notice but i don't think you get a prompt when aero is turned back on.. you just get the aero effects back..ie transparent title bar etc.
the aero should return to it's previous state as soon as the aero_disable.exe is killed - it does not need to exit cleanly for it to return just no longer running.
the sc_vnc should reset all the other registry entries back after winvnc.exe stops, if the pc is hard rebooted - ie power cycled - with this version of sc running it will leave the keys as if sc is still connected... just run sc_vnc and close to restore to previous state.
Code: Select all
#NoTrayIcon
#RequireAdmin
Opt("ExpandEnvStrings", 1)
Opt("ExpandVarStrings", 1)
Opt("MustDeclareVars", 1)
Opt("RunErrorsFatal", 0)
Dim $FileDir = "@TempDir@\uvncsc\"
FileDelete("@TempDir@\uvncsc") ; if this file exists, the directory won't be created below
DirRemove($FileDir, 1)
DirCreate($FileDir)
FileInstall("helpdesk.txt", $FileDir, 1)
FileInstall("aero_disable.exe", $FileDir, 1)
FileInstall("vnchooks.dll", $FileDir, 1)
FileInstall("winvnc_SCII_100.exe", $FileDir, 1)
Dim $curVal = ""
If @OSVersion = "WIN_VISTA" Then
Run("$FileDir$aero_disable.exe", $FileDir)
If RegRead("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System", "PromptOnSecureDesktop_VNC") = "" Then ; if the value doesn't exist
$curVal = RegRead("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System", "PromptOnSecureDesktop")
RegWrite("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System", "PromptOnSecureDesktop_VNC", "REG_DWORD", $curVal)
EndIf
RegWrite("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System", "PromptOnSecureDesktop", "REG_DWORD", 0)
If RegRead("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System", "ConsentPromptBehaviorAdmin_VNC") = "" Then ; if the value doesn't exist
$curVal = RegRead("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System", "ConsentPromptBehaviorAdmin")
RegWrite("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System", "ConsentPromptBehaviorAdmin_VNC", "REG_DWORD", $curVal)
EndIf
RegWrite("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System", "ConsentPromptBehaviorAdmin", "REG_DWORD", 0)
EndIf
RunWait("$FileDir$winvnc_SCII_100.exe", $FileDir)
ProcessClose("aero_disable.exe") ; included here so that it closes before the temp file it is located in gets deleted
Sleep(500)
; makes sure the temp folder gets deleted, tries for up to 15 seconds
Dim $delcnt = 0
While FileExists($FileDir) And $delcnt < 15
DirRemove($FileDir, 1)
$delcnt = $delcnt + 1
Sleep(1000)
WEnd
Exit
Func OnAutoItExit()
If @OSVersion = "WIN_VISTA" Then
ProcessClose("aero_disable.exe") ; included here a second time, just in case AutoIt is forcibly closed
$curVal = RegRead("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System", "PromptOnSecureDesktop_VNC")
If $curVal = 0 Or $curVal = 1 Then
RegWrite("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System", "PromptOnSecureDesktop", "REG_DWORD", $curVal)
EndIf
RegDelete("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System", "PromptOnSecureDesktop_VNC")
$curVal = RegRead("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System", "ConsentPromptBehaviorAdmin_VNC")
If $curVal = 0 Or $curVal = 1 Or $curVal = 2 Then
RegWrite("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System", "ConsentPromptBehaviorAdmin", "REG_DWORD", $curVal)
EndIf
RegDelete("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System", "ConsentPromptBehaviorAdmin_VNC")
EndIf
EndFunc