Get your own customer support community

Recent activity

Subscribe to this feed
  • talk

    P00PDOG replied on July 26, 2008 02:04 to the discussion "Is this format better or worse than forums?" in Bozteck:

    P00PDOG
    I prefer bbs/forum style as you can see more threads in one page. But don't put too much weight on my opinion, I think I might be more an exception to the norm here.
  • question

    P00PDOG replied on July 26, 2008 02:00 to the question "Remote scripting problems" in Bozteck:

    P00PDOG
    We have a private network and usually I use other alternatives to PSEXEC but in a pinch it does the trick.

    Steve, does the beyond exec install itself as a service on all clients or does it work like I would expect and just be installed on the pc that has VNCScan installed?
  • problem

    P00PDOG replied on July 26, 2008 01:41 to the problem "Is BeyonExecV2.exe a W32.Stration@mm virus ??" in Bozteck:

    P00PDOG
    You could do an exception if you have a managed environment.
  • question

    P00PDOG replied on July 25, 2008 14:41 to the question "Remote scripting problems" in Bozteck:

    P00PDOG
    I'm a little confused does VNCScan install a psexec/beyondexec service on each client?

    sultanofsin there has to be a better way of doing it. I jist recently had major issues trying to update a very picky EMR application to 600 pc's. I have "Desktop Authority" that works for most of my remote scripting needs but its mostly a logon script tool. I have tried so many variations that I almost gave up(meaning just put domain users in the domain admins group for a day). Then I tried it old school (vb/adsi script to export all of the computer objects in my domain and dumped it into a txt file "computers.txt) then using PSEXEC I ran it against the txt file like this.

    psexec.exe -accepteula @computers.txt -u ccp\scriptadmin -p "Password in quotes here" -e -i -c "\\ccpad01\netlogon\Logician_Update\logician_update_sp7.exe"

    the above command line is one line. also computers.txt should be formatted with only one client per line e.g.
    computer1
    computer2
    exc....
    Now granted my executable is doing a bunch of things but it doesn't matter because its running as a domain admin.

    I hope this helps in some way. If you have any questions just post here.
  • question

    P00PDOG replied on June 23, 2008 15:55 to the question "Making multiple changes on large network through the console" in Bozteck:

    P00PDOG
    Oh yeah I see what you want, there is software out there that does this, you would have to install it on each machine, and configure it.
  • question

    P00PDOG replied on June 23, 2008 15:52 to the question "Making multiple changes on large network through the console" in Bozteck:

    P00PDOG
    OK here is the batch command for static...k?

    in a batch file put:
    netsh -f static.txt

    in static.txt put

    # ----------------------------------
    # Interface IP Configuration
    # ----------------------------------
    pushd interface ip
    set wins name="Local Area Connection" source=static addr=none
    set dns name="Local Area Connection" source=static addr=none
    popd

    pushd interface ip

    # Interface IP Configuration for "Local Area Connection"

    set address name="Local Area Connection" source=static addr=IPADDRESS OF WORKSTATION mask=SUBNETMASK OF THE WORKSTATION
    set address name="Local Area Connection" gateway=IPADDRESS OF THE GATEWAY gwmetric=1
    set dns name="Local Area Connection" source=static addr=IPADDRESS OF THE DHCP SERVER
    add dns name="Local Area Connection" addr=IPADDRESS ON ANOTHER DHCP SERVER

    set wins name="Local Area Connection" source=static addr=IPADDRRESS OF THE WINS SERVER
    add wins "Local Area Connection" addr=YOU GET THE POINT index=2

    popd
    # End of interface IP configuration

    Look up netsh
  • question

    P00PDOG replied on June 21, 2008 13:14 to the question "Remote scripting problems" in Bozteck:

    P00PDOG
    Ok cool but I'm a little confused. I thought that VNCScan can only push things out using only the "system" account and that could not access network shares. I would assume that if I run VNCScan logged into the computer as me that it is accessing resources as me, but that is not the case? I saw a couple of posts up that we could put a domain admin account on the service, and that most likely would fix sultan's problem, but I would recommend that being a choice during the install. As a matter of fact as far as the pushing out of scripts/whatever in a network environment (9x% are MS AD) that that would be a show stopper. Accessing network resources for remote scripting is pretty much a requirement. I would say that it is an "A bug"<--sorry>m not trying to be, just helpful) I like VNCScan, I like it better than all the other VNC management SW out there, much easier to use and has this network management side to it.
  • question

    P00PDOG replied on June 21, 2008 11:29 to the question "Remote scripting problems" in Bozteck:

    P00PDOG
    Yes I do, first I want to say that there are a lot of resources on the net about scripting/remote scripting.
    first, here are some tools to consider
    ScriptLogic/now Called Desktop Authority - this is by far my favorite scripting tool, however it is a per client model and could run thousands of dollars if you have a lot of clients. This is a GUI based log in scripting tool that uses Kixtart as its base. You can use the built in features (too many to get into here) or you can write custom scripts, and they have a run as feature that when a user log’s in it will run all of your scripts and will run any and all as a domain admin or whatever. This would be a one stop shopping for all of your scripting needs except it can get pricey and learning Kixtart would be desirable.

    AdminScriptEditor this has morphed into an expansive script editing tool, I use it for VBscript’s and mostly my Kixtart scripts. It is able to do a "run as" and you can embed the whole package into 1 executable (it packs it up for you) but this runs on Kixtart as well so learning Kixtart would be necessary.

    Ok, this leads me to Kixtart, this is my favorite scripting language, it was written specifically for sys admins. It requires an exe to run your scripts (like autoit) so I just dumped it into our domains Netlogon dir and call it from there. One of the biggest reasons I like it is that it is very easy to learn. Also its careware (You donate any amount to charity and just send a receipt to the guy who wrote it and you can use it to your hearts content) One e-book and you are scripting.

    Now to your task at hand, PSexec is probably what you are looking for, its free and will run any process as any user including a domain user. If you log into a domain computer as a domain admin, and you use PSexec you will be able to run any script and access any resource on your network (as long as a domain admin has access to it hehe) you will need to get a list of your domain computers (a VB ADSI script that I can give you) then you can run PSexec on that list of computers as any user and accessing anyfile and you can use UNC paths too. I’m not sure how to get the files to you, I don’t think there is a PM system in place but Steve has my permission to forward my email to you.

    Sorry for the long winded email and I hope mentioning other products on this page doesn’t violate any rules here but these are what has made me invaluable to my company. Sultanofsin, you have a lot of reading to do but I will help you if I can. I have a couple of scripts I can give you, but you have to take the initiative.
  • question

    P00PDOG replied on June 21, 2008 02:31 to the question "Remote scripting problems" in Bozteck:

    P00PDOG
    sultanofsin If you are running as the system account on the remote system then that is essentially a local admin on tthe remote system. Anything you run should work unless I am mistaken about where exactly the system account is running.

    Steve, no I havent tried even half of the features yet, I'm still evaluating, I was just commenting on the post that said that VNCScan can only use the "system " account, psexec.exe can run any process as any user domain or local or remote local (meaning local accounts on the remote machine like Administrator) I will look into it though, thanks.
  • question

    P00PDOG replied on June 20, 2008 22:44 to the question "Remote scripting problems" in Bozteck:

    P00PDOG
    Lookinto PSExec a Mark Russinovich tool.
    http://technet.microsoft.com/en-us/sy...

    It would be neat to have in GUI format what I do now with command line.
  • question

    P00PDOG replied on June 20, 2008 22:13 to the question "Making multiple changes on large network through the console" in Bozteck:

    P00PDOG
    EDIT: Ooops I was answering the original question however this still might work for you, just look up netsh to see what can be changed. just using this as is might do the trick though.

    there are many ways to do this

    in a batch file put:
    netsh -f DHCP.txt

    in DHCP.txt put

    # ----------------------------------
    # Interface IP Configuration
    # ----------------------------------

    pushd interface ip

    # Interface IP Configuration for "Local Area Connection"

    set address name="Local Area Connection" source=dhcp
    set dns name="Local Area Connection" source=dhcp
    set wins name="Local Area Connection" source=dhcp

    popd
    # End of interface IP configuration

    Note: this only works if the Interface that you are working with is named "Local Area Connection" which is usually default but has been known to change.