Jump to content

The Unicorn

Member
  • Posts

    26
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Ireland

Posts posted by The Unicorn

  1. Okej, first change the following:

    char load;
    char lock;

    to

    char load[10];
    char lock[10];

    Then Change

    if (load = load) {
    shotgun.drawn(); }
    //and
    if (lock = lock) {
    shotgun.locked(); }

    to

    if (strcmp(load, "load") == 0){
    shotgun.drawn(); }
    //and
    if (strcmp(lock, "lock") == 0) {
    shotgun.locked(); }

    The errors in the commented out code beneth is rather easy to fix but I haven't tried running the entire program.

  2. Sure, you can do it as EvilNotion said but it is alot easier to just monitor a installation of .net framework. when you have done that you can just take the enteries i HKLM since they were the only ones I needed. In there it will already have all the dll files you need registered. The you must edit the paths in the .inf file. The most importent path is HKLM/software/microsoft/.netframework/InstallRoot and if you dont change it, Pe will say that .net framwork is not installed. This metod however, I have only tried with BartPE and won't be able to help in geting it to work with Micorsoft Windows Pe.

    Good luck!

  3. Have you opended any ports at all on the server? You must open the necessary ports on the firewall. Since you have connected this firewall directly to the router, it has probably been st as un unsafe zone and therefore all connectios to the computer except the ports manualy opended. I'm not familiar with your firewall but perhaps you can set it to accept all connections from your other two computers (confiured by ip-number).

    Hope this will help.

  4. I was wondering what differnet varibles there are in bartpe. I'm trying to accsess a file that is in the root of the cd from an other program but when I write cd %systemdrive% in cmd it doesen't work. what I was wondering was if there are anny easy replacement for it.

×
×
  • Create New...