MSFN Forum: WPI Bug Report Thread - MSFN Forum

Jump to content


  • 11 Pages +
  • « First
  • 8
  • 9
  • 10
  • 11
  • You cannot start a new topic
  • You cannot reply to this topic

WPI Bug Report Thread Rate Topic: -----

#181 User is offline   Whatsup 

  • Newbie
  • Group: Members
  • Posts: 42
  • Joined: 11-February 10

Posted 23 August 2012 - 03:34 PM

Hi..

WPI_v8.5.8 test!!

"C:\Audio" With quotation marks it Fail...no music !!!

C:\Audio This work fine!!...music play well^^

---------------------------------------------------------------------------

case 'DELDIR':
cmd="CMD /C RMDIR /S /Q "+ cmd; this one Fail here to...Warning is back!!!..Audio folder still on HHD.

case 'DELDIR':
cmd="CMD /C RD /S /Q " + cmd; Stay by this one...this work fine Audio folder is now remove^^.

-------------------------------------------------------------------------

With these changes it works fine...Thanks for your hard work on this Fix Kel..

Grt Whatsup.

This post has been edited by Whatsup: 23 August 2012 - 03:36 PM



#182 User is offline   ricktendo 

  • Group: Banned Members
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,228
  • Joined: 06-June 06
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 23 August 2012 - 03:42 PM

Kel you should try just \Audio without C: drive letter

I use just a backslash+foldername with the cmd prompt in my waik commands because it automatically assumes the folder is on the system drive (worth a try)

This post has been edited by ricktendo64: 23 August 2012 - 03:44 PM


#183 User is offline   Kelsenellenelvian 

  • WPI Guru
  • Group: Developers
  • Posts: 8,322
  • Joined: 18-September 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 23 August 2012 - 03:43 PM

Wow both worked fine for me in multpile tests

#184 User is online   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,382
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 23 August 2012 - 03:44 PM

About the path to copy Audio foder on HDD.

At first time the path is writed inside the box when a user wants copy the Audio folder and remove after the installation is done, but if we uncheck the remove and copy option and uncheck Audio Player, we can see if we select a new time the Audio Player that the box to write the installation path is empty and we can write: C:\

Block the path to C:\WPI_Audio would be a fine security for everyone. That mean we can not write inside the box even if we uncheck boxes.


About the error if I select some applications and not all to install, when Windows restart there is a message on the taskbar: Error: Windows could not connect to the Event System Service, after 4 minutes to restart.

I think we must keep the path to C:\WPI_Audio to write the music playlist inside Install.m3u file!

Regards

This post has been edited by myselfidem: 25 August 2012 - 01:53 PM


#185 User is offline   Whatsup 

  • Newbie
  • Group: Members
  • Posts: 42
  • Joined: 11-February 10

Posted 23 August 2012 - 04:00 PM

View Postricktendo64, on 23 August 2012 - 03:42 PM, said:

Kel you should try just \Audio without C: drive letter

I use just a backslash+foldername with the cmd prompt in my waik commands because it automatically assumes the folder is on the system drive (worth a try)


Hi ricktendo64.

I test your option..but sorry it fail here.

Grt Whatsup

#186 User is online   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,382
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 23 August 2012 - 04:02 PM

We can see inside Install.m3u file that using quotes for the path to copy and remove the folder give errors:

"C:\Audio"\Java.mid
"C:\Audio"\Mario.mid


The music is only displayed using a path without quotes.

Install.m3u
C:\WPI_Audio\Java.mid
C:\WPI_Audio\Mario.mid
C:\WPI_Audio\Kalimba.mp3


But with mp3 files there is a warning message like said Whatsup: The command RMDIR gives the error and path with quotes doesn't work (no music displayed)
Same result as Whatsup.

Regards

This post has been edited by myselfidem: 26 August 2012 - 03:59 AM


#187 User is offline   Kelsenellenelvian 

  • WPI Guru
  • Group: Developers
  • Posts: 8,322
  • Joined: 18-September 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 23 August 2012 - 06:53 PM

Honestly? I am nearly ready to remove the whole feature. I have spent 40+ hours on it in the past week...

I can fix the quotes issue but I only get the damned audio folder to delete half of the time...

#188 User is offline   Francesco 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 394
  • Joined: 20-March 04

Posted 23 August 2012 - 08:38 PM

Is there a reason why
<!--[if lt IE 7]>
<style type="text/css">
	img, div, input, span { behavior: url("../WPIScripts/iepngfix.htc") }
</style>
<![endif]-->


has been removed from WPI.HTA? Without that transparency doesn't work in IE6.

#189 User is offline   Kelsenellenelvian 

  • WPI Guru
  • Group: Developers
  • Posts: 8,322
  • Joined: 18-September 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 23 August 2012 - 08:57 PM

Hmmm not sure I have added it back into my master though.

#190 User is online   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,382
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 24 August 2012 - 12:31 AM

Using RD or RMDIR inside the installer.js works fine!

Give error because a space is missing inside the line 1177:

Quote

case 'DELDIR':
cmd="CMD /C RMDIR /S /Q "space missing+ cmd;
fsoCmd=true;
break;


WPI_Log.txt
Spoiler


Regards

@Whatsup
Take care with the spaces inside the command you have changed!

Quote

case 'DELDIR':
cmd="CMD /C RD /S /Q(space in)"(space in)+(space in)cmd;

This post has been edited by myselfidem: 24 August 2012 - 04:16 AM


#191 User is online   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,382
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 24 August 2012 - 12:55 AM

View PostFrancesco, on 23 August 2012 - 08:38 PM, said:

Is there a reason why
<!--[if lt IE 7]>
<style type="text/css">
    img, div, input, span { behavior: url("../WPIScripts/iepngfix.htc") }
</style>
<![endif]-->


has been removed from WPI.HTA? Without that transparency doesn't work in IE6.


Thanks Francesco. This is also missing inside Installer.hta

This code was inside previous version (WPI 8.0.0)

Regards

#192 User is offline   Whatsup 

  • Newbie
  • Group: Members
  • Posts: 42
  • Joined: 11-February 10

Posted 24 August 2012 - 11:08 AM

View Postmyselfidem, on 24 August 2012 - 12:31 AM, said:

@Whatsup
Take care with the spaces inside the command you have changed!


I did not change it..only copy en past here for info.

But Thanks for the info...I'll keep an eye on^^

#193 User is online   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,382
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 24 August 2012 - 11:12 AM

View PostWhatsup, on 24 August 2012 - 11:08 AM, said:

View Postmyselfidem, on 24 August 2012 - 12:31 AM, said:

@Whatsup
Take care with the spaces inside the command you have changed!


I did not change it..only copy en past here for info.

But Thanks for the info...I'll keep an eye on^^

Could you try now changing the command inside installer.js, like this, and let us know the result?:

case 'DELDIR': 
               cmd="CMD /C RMDIR /S /Q " + cmd; 
               fsoCmd=true; 
               break; 


Works fine for me!

#194 User is offline   Whatsup 

  • Newbie
  • Group: Members
  • Posts: 42
  • Joined: 11-February 10

Posted 24 August 2012 - 11:17 AM

View PostKelsenellenelvian, on 23 August 2012 - 06:53 PM, said:

Honestly? I am nearly ready to remove the whole feature. I have spent 40+ hours on it in the past week...

I can fix the quotes issue but I only get the damned audio folder to delete half of the time...


I'm really sorry.that it so much time cost you...that was not my intention..again sorry Kel.

To make it clear for you:
No1:
C:\Audio Fix my music start...work great like this way.
===============================================================
No2:
if (PlayAudioInInstaller && DeleteAudioFolder && programs[i].uid=="DELETE_AUDIO_FROM_HD") // Stop player so can delete folder
{
document.getElementById("MediaPlayer").controls.stop();
document.getElementById("MediaPlayer").url="";
Pause(0,2500);
}

Pause(0,2500); Fix the Audio folder removed from HD works great like this way...
===============================================================
Thx alot for all your time...and again sorry.

#195 User is online   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,382
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 24 August 2012 - 11:30 AM

View PostKelsenellenelvian, on 23 August 2012 - 06:53 PM, said:

Honestly? I am nearly ready to remove the whole feature. I have spent 40+ hours on it in the past week...

I can fix the quotes issue but I only get the damned audio folder to delete half of the time...


It's just a little error inside the command!

Regards

#196 User is offline   Whatsup 

  • Newbie
  • Group: Members
  • Posts: 42
  • Joined: 11-February 10

Posted 24 August 2012 - 11:39 AM

View Postmyselfidem, on 24 August 2012 - 11:12 AM, said:

View PostWhatsup, on 24 August 2012 - 11:08 AM, said:

View Postmyselfidem, on 24 August 2012 - 12:31 AM, said:

@Whatsup
Take care with the spaces inside the command you have changed!


I did not change it..only copy en past here for info.

But Thanks for the info...I'll keep an eye on^^

Could you try now changing the command inside installer.js, like this, and let us know the result?:

case 'DELDIR': 
               cmd="CMD /C RMDIR /S /Q " + cmd; 
               fsoCmd=true; 
               break; 


Works fine for me!


Yes test succesfull..it work nice men^^.

And i see now whats wrong in WPI 8.5.8 installer.js.

cmd="CMD /C RMDIR /S /Q "[missing space here]+ cmd; thats why it fail yesterday.

#197 User is online   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,382
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 24 August 2012 - 11:41 AM

Thanks Whatsup for the test! ;)

This post has been edited by myselfidem: 24 August 2012 - 11:42 AM


#198 User is online   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,382
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 25 August 2012 - 01:41 PM

About the sound inside Audio Player.

The function to stop the sound or enable it when we want, is to change a value inside: Installer.hta (was inside previous version WPI_v7.6.0)

line 579, change the value false to true.

document.getElementById("MediaPlayer").settings.autoStart=true;


Now works fine!

Regards

*Edit: However works only for mp3 files and not for mid files !! :)

Maybe the solution is to convert .mid files to .mp3 files !!

Tested with Galaga.mid converted to Galaga.mp3 and works fine (Of course, The disadvantage is that the file is larger)!

This post has been edited by myselfidem: 29 August 2012 - 04:03 AM


#199 User is online   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,382
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 25 August 2012 - 11:18 PM

View PostKelsenellenelvian, on 23 August 2012 - 03:20 PM, said:

myselfidem said:

When I select some applications there is an error on Windows 7 with System event and the system needs time: 4 minutes to start and 4 minutes to restart the first time.
If I install all programs, all is fine: 20 seconds to start and 20 seconds to restart.

Can you clarify???

Not totaly solved!

The trouble was a warning message on a popup window at start and restart Windows on VM Oracle VirtualBox, only installing some applications with WPI, but not when installing all.

WMI error message insde the Event System log:

Quote

Event filter with query "SELECT * FROM __InstanceModificationEvent WITHIN 60 WHERE TargetInstance ISA "Win32_Processor" AND TargetInstance.LoadPercentage > 99"
could not be reactivated in namespace "//./root/CIMV2" because of error 0x80041003.
Events cannot be delivered through this filter until the problem is corrected.


And Windows needed 4 minutes to start and 4 minutes to restart only the first time.

Windows Management Instrumentation

This happens only using VM VirtualBox - not on my Computer - and I made some adjustments inside VM:

Configuration | System | Acceleration

uncheck the boxes:

- Hardware Virtualization:
Activate VT-x/AMD-V
Enable Paging nested

WPI is more faster than never!

Using WMI

Maintaining WMI Security

Regards

This post has been edited by myselfidem: 03 September 2012 - 02:02 PM


#200 User is offline   Whatsup 

  • Newbie
  • Group: Members
  • Posts: 42
  • Joined: 11-February 10

Posted 31 August 2012 - 05:05 PM

View Postmyselfidem, on 25 August 2012 - 01:41 PM, said:

About the sound inside Audio Player.
The function to stop the sound or enable it when we want, is to change a value inside: Installer.hta (was inside previous version WPI_v7.6.0)
line 579, change the value false to true.

document.getElementById("MediaPlayer").settings.autoStart=true;


Aha...so that was the reason that it stops working for me in the past^^...well found myselfidem.

Share this topic:


  • 11 Pages +
  • « First
  • 8
  • 9
  • 10
  • 11
  • You cannot start a new topic
  • You cannot reply to this topic

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



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