MSFN Forum: I NEED WindowBlinds Switches - MSFN Forum

Jump to content



Unattended CD/DVD Guide Homepage · MSFN Forum Rules

Welcome to the Applications Installs forum. Make sure you read the forum rules before you start posting.

Links/Requests to warez and/or any illegal material (porn, cracks, serials, etc..) will not be tolerated. Discussion of circumventing WGA/activation/timebombs/keygens or any other illegal activity will also not be tolerated.

We try our best to keep this forum clean of illegal content. If you see any illegal activity use the "report" button you find in every post to report the specific post to the moderators. If you ignore any of the rules you will be banned without notice.

Read Forum Rules
Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

I NEED WindowBlinds Switches Rate Topic: -----

#1 User is offline   alhaddar 

  • Junior
  • Pip
  • Group: Members
  • Posts: 78
  • Joined: 14-May 04

Posted 24 June 2004 - 05:02 AM

HI

I NEED WindowBlinds Switches TO silent install

THANKS


#2 User is offline   Alanoll 

  • CODE tags people, CODE tags!
  • Group: Patrons
  • Posts: 5,496
  • Joined: 25-September 03

Posted 24 June 2004 - 07:59 AM

have you searched?

do you have the standalone version? the one that requires the Serial? You may then need to use InstallRite or something similar

#3 User is offline   Joe User 99 

  • Member
  • PipPip
  • Group: Members
  • Posts: 168
  • Joined: 24-September 03

Posted 24 June 2004 - 09:51 AM

I couldn't find any working switches back when I was looking.
It is a Wise Installer, but just using /S doesn't work. :D

I repackaged it into a MSI for myself. I don't see anywhere in my capture where it captured the Serial Number, but it seems to install and run just fine for me. :rolleyes:

(Also, this way I changed my personal settings and pre-installed additional themes)
:)

#4 User is offline   mazin 

  • MSFN Addict
  • Group: Supreme Sponsor
  • Posts: 1,952
  • Joined: 12-January 04

Posted 24 June 2004 - 06:17 PM

alhaddar

I'm using a JavaScript file like I did with Ad-aware. This is what you do:

Create a text file in the root of drive C and name it wb.js but not wb.js.txt, then copy and paste the following lines into it:

wb.js

Quote

function getWin(win, inc)
{
var cntr = 0;
while (!WshShell.AppActivate(win))
{
if (cntr==12) return true;
cntr++;
WScript.Sleep(inc);
}
return true;
}
var WshShell = new ActiveXObject("WScript.Shell");
var oExec = WshShell.Exec("windowblinds.exe");
while (oExec.Status == 0)
{
WScript.Sleep(2000);
getWin("Enter Window", 2000);
WshShell.SendKeys ("WB-xxxxxxxxxxxxxxxxxxxx-xxxxxxxxx");
WScript.Sleep(500);
WshShell.SendKeys ("{ENTER}");
WScript.Sleep(500);
WshShell.SendKeys ("{ENTER}");
WScript.Sleep(500);
WshShell.SendKeys ("{ENTER}");
WScript.Sleep(500);
WshShell.SendKeys ("{ENTER}");
WScript.Sleep(60000);
WshShell.SendKeys ("%{F4}");
WScript.Sleep(500);
WshShell.SendKeys ("{ENTER}");
}
WScript.quit();


Put your windowblinds.exe in the root of drive C, too. If your executable has a different name, then consider modifying the name in red inside wb.js, too.

Replace the xs with your serial number.

Now, you have got these files in the root of drive C:

C:\wb.js
C:\windowblinds.exe

Run wb.js manually to test it. The 60-second interval (60000) is the time taken by the app to install on my PC. I use this method for version 4 enhanced.

Should you ever have problems in this method, let me know.

This post has been edited by mazin: 26 June 2004 - 06:03 AM


#5 User is offline   alhaddar 

  • Junior
  • Pip
  • Group: Members
  • Posts: 78
  • Joined: 14-May 04

Posted 25 June 2004 - 01:51 PM

thanks for help

but when I try use this Script I Received this Message

Attached File(s)

  • Attached File  ss.JPG (31.1K)
    Number of downloads: 63


#6 User is offline   mazin 

  • MSFN Addict
  • Group: Supreme Sponsor
  • Posts: 1,952
  • Joined: 12-January 04

Posted 25 June 2004 - 03:59 PM

Yes, you can't run JS or VBS files while NAV is running because ScriptBlocking is enabled.

Choose "Authorize" or disable ScriptBlocking first within NAV, or use your Task Manager to terminate NAV itself.

This is a known issue. The JS file works great.

#7 User is offline   SiMoNsAyS 

  • C'mon you apes! You wanna live forever!?
  • Group: Patrons
  • Posts: 3,455
  • Joined: 17-May 04

Posted 25 June 2004 - 08:00 PM

sorry because i've never run javascript code... how can i run it from programs.cmd (commandline)?

#8 User is offline   mazin 

  • MSFN Addict
  • Group: Supreme Sponsor
  • Posts: 1,952
  • Joined: 12-January 04

Posted 26 June 2004 - 06:05 AM

SiMoNsAyS, on Jun 26 2004, 05:00 AM, said:

sorry because i've never run javascript code... how can i run it from programs.cmd (commandline)?

Before you can run wb.js by a batch file (programs.cmd or whatever), make sure both wb.js and windowblinds.exe are in the root of your systemdrive.

Include these lines in your batch file:

cls
@echo off
ECHO Installing WindowBlinds 4.0 Enhanced
CD %systemdrive%\
Start %systemdrive%\wb.js
sleep 70
Del %systemdrive%\wb.js
Del %systemdrive%\windowblinds.exe
exit


You're assumed to have sleep.exe in your %systemdrive%\Windows\system32\ before runnng the batch.

#9 User is offline   mazin 

  • MSFN Addict
  • Group: Supreme Sponsor
  • Posts: 1,952
  • Joined: 12-January 04

Posted 26 June 2004 - 06:06 AM

I told alhaddar to run it manually to test installation time first.

#10 User is offline   SiMoNsAyS 

  • C'mon you apes! You wanna live forever!?
  • Group: Patrons
  • Posts: 3,455
  • Joined: 17-May 04

Posted 26 June 2004 - 09:46 PM

ok, simple, thanks.

#11 User is offline   blinkdt 

  • Somewhat Knowledgeable
  • PipPipPipPip
  • Group: Members
  • Posts: 582
  • Joined: 30-September 03
  • OS:Vista Ultimate x64
  • Country: Country Flag

Posted 05 July 2004 - 03:16 AM

@Joe User 99
I would love to know what tool you used to repackage this app, especially with a new theme and the serial intact. A brief rundown on the repackaging procedure would be nice, too. :)

I'm using AutoIt right now--and it's a pain--and have no real experience with the method you mentioned. I'm pretty good with "paint by numbers" though. Any help would be much appreciated.

#12 User is offline   Joe User 99 

  • Member
  • PipPip
  • Group: Members
  • Posts: 168
  • Joined: 24-September 03

Posted 05 July 2004 - 05:23 AM

I used Wise Package Studio 5.1. But it's a high dollar app.
For freeware, try WinInstallLE 2003.

Basically, it's a before and after snapshot. You take the before snapshot, then install the app, make any configuration changes, in this case, add new themes, etc, then take the after snapshot. The app then compares the two snapshots and builds a msi out of the differences. That is the basics. After getting some experience under your belt, you can then edit the msi, and move/add/remove features, shortcuts,etc.

I can't list step by step, as I've never used the WinInstallLE 2003. I used the one that comes with the 2000 server cd, but it was too feature limited, so I chunked it.

I know there are some cheap shareware msi editors out there also, you just have to find one you like. While they all build msi installs, their user interfaces, etc are all different.

Good luck!

#13 User is offline   blinkdt 

  • Somewhat Knowledgeable
  • PipPipPipPip
  • Group: Members
  • Posts: 582
  • Joined: 30-September 03
  • OS:Vista Ultimate x64
  • Country: Country Flag

Posted 07 July 2004 - 02:54 PM

Thanks, Joe. OnDemand Software claims their product--WinInstallLE--is the same one that was bundled with the 2000 server CD. Gonna give it a try later this summer, but for now I will stick with your method as suggested in this thread. I ran into some 'hidden window' issues while using AutoIt and just can't seen to get past them, so poop on that route. :)

#14 User is offline   blinkdt 

  • Somewhat Knowledgeable
  • PipPipPipPip
  • Group: Members
  • Posts: 582
  • Joined: 30-September 03
  • OS:Vista Ultimate x64
  • Country: Country Flag

Posted 10 July 2004 - 04:27 PM

Finally got this bugger to work! :) I ended up using InstallRite to create an installation package, entering serial number and applying the theme of my choice along the way. I run the package AFTER first boot (many attempts to install this package from RunOnceEx failed miserably). After the package is installed I end the routine by adding the following key to the registry so that the theme will be applied following a forced reboot:
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]
"WindowBlinds"="C:\\Program Files\\stardock\\object desktop\\windowblinds\\wbload.exe"

I'm using AutoIt to run my first boot routine, which installs CursorXP, Belarc Advisor, Window Washer, and WindowBlinds. The routine also cleans up icons and directory structures along the way, the whole thing looks magical. I don't know who thought up the idea for this forum, but my hats off to them! Couldn't have done this in a million years without everyone's help.

#15 User is offline   mazin 

  • MSFN Addict
  • Group: Supreme Sponsor
  • Posts: 1,952
  • Joined: 12-January 04

Posted 12 July 2004 - 04:08 AM

Well!

There's now an AutoIt script for WindowBlinds 4.30, here:

http://www.msfn.org/board/index.php?showto...ndpost&p=150672

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy