Jump to content
UBot Underground

Recommended Posts

Minimize to Tray not working in compiled bot:

 

ui button("Ins Tray verschieben") {

    plugin command("Advanced Ubot.dll""minimize to tray""Testbot"Anwendung wurde ins Tray verschoben.""Testbot", 3, "Info""Return""{$special folder("Application")}\\xxx.ico""True")

}

 

Ubot V4.

Tested with debug enabled and disabled.

With debug it works fine in the ubot studio UI.

 

Thanks

Dan

I tested it works

Please check your icon file.

 

note

Please ask the topic "Advance Ubot".

Link to post
Share on other sites
  • Replies 281
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Popular Posts

I will check and fix in the next update.

It is what I try to do. However, when it merged with Ubot Studio it does not respond to it. I'm confused as well Something can not be directly applied to Ubot (solution Sometimes it takes time).

Task Scheduler http://www.youtube.com/watch?v=dO25VBRL48s

Posted Images

Feature Request:

 

Kill specific browser.exe process if it runs longer than N.

I need a way to terminate / close browser.exe sessions if they are stuck or taking to long. 

They are not crashing all the time, but are not closing properly either.

 

This is a multithreading bot.

 

Maybe this can be implemented into the thread functions? A timer which will automatically kill a thread (browser.exe) if it runs longer than the configured time period. 

 

Would that be possible?

 

Kindest regards

Dan

Link to post
Share on other sites

Feature Request:

 

Kill specific browser.exe process if it runs longer than N.

I need a way to terminate / close browser.exe sessions if they are stuck or taking to long. 

They are not crashing all the time, but are not closing properly either.

 

This is a multithreading bot.

 

Maybe this can be implemented into the thread functions? A timer which will automatically kill a thread (browser.exe) if it runs longer than the configured time period. 

 

Would that be possible?

 

Kindest regards

Dan

 

Love the idea, I've been looking for something similar myself.

 

+1

Link to post
Share on other sites

V2.1.0.0

Add C/F:

  • $system get process id: get process id from windows title/process name/main id (can get all child process)

Add Sample File:

  • Get Process ID + Kill Process.ubot
Link to post
Share on other sites

 

V2.1.0.0

Add C/F:

  • $system get process id: get process id from windows title/process name/main id (can get all child process)

Add Sample File:

  • Get Process ID + Kill Process.ubot

 

 

Is there a way to see how long a browser.exe process is running already?

Sorry if that's in the source code. I don't own this plugin yet. 

 

Dan

Link to post
Share on other sites

Is there a way to see how long a browser.exe process is running already?

Sorry if that's in the source code. I don't own this plugin yet. 

 

Dan

1. You need to create a button for closing bots. Instead of the normal closure

2. use the command "system get process id" to find the process id of bots.

3. kill the process

Link to post
Share on other sites

1. You need to create a button for closing bots. Instead of the normal closure

2. use the command "system get process id" to find the process id of bots.

3. kill the process

 

Hmm... I need that while the bot is still running. Not to close the bot. 

I give you an example.

 

I have 100 website. And the bot needs to visit each one of those websites. 

I use "In new browser". 

 

And website 37 get's stuck. So the bot can't continue. 

I now want to kill browser.exe after 3 minutes. So that the bot can continue with the next website (38).

 

At least that was my idea :-)

Dan

Link to post
Share on other sites

Hmm... I need that while the bot is still running. Not to close the bot. 

I give you an example.

 

I have 100 website. And the bot needs to visit each one of those websites. 

I use "In new browser". 

 

And website 37 get's stuck. So the bot can't continue. 

I now want to kill browser.exe after 3 minutes. So that the bot can continue with the next website (38).

 

At least that was my idea :-)

Dan

Oh. Beyond my ability. It is very difficult to detect. Ubot process failure

 

guidelines

1. Use the command "system get process id" main store id.

2. Use the command "system get process id" id collect all the items.

3. Wait 3 minutes

4. loop kill list of non-core items (1).

Link to post
Share on other sites

Task scheduler bug

- "task scheduler/edit (dialog) command isnt working.

- "task scheduler/get" isnt working on tasks in custom folders. It can only get the main task scheduler folder

Please Preview your Code

Link to post
Share on other sites

ui button("Add Task") {
plugin command("Advanced Systems.dll", "task scheduler/add", "\\kojak", "Test Task", "testing", "For test task command") {
plugin command("Advanced Systems.dll", "task scheduler/exec action", "{$special folder("Desktop")}\\testing1.exe", "/auto")
plugin command("Advanced Systems.dll", "task scheduler/daily triggers", "6/16/2014 9:25:55 AM", 1, 0)
}
}
ui button("Edit") {
plugin command("Advanced Systems.dll", "task scheduler/edit (dialog)", "Test Task", "\\kojak")
}
ui button("get") {
plugin command("Advanced Systems.dll", "task scheduler/get", "\\kojak", &test)
}

Link to post
Share on other sites


ui button("Add Task") {
plugin command("Advanced Systems.dll", "task scheduler/add", "\\kojak", "Test Task", "testing", "For test task command") {
plugin command("Advanced Systems.dll", "task scheduler/exec action", "{$special folder("Desktop")}\\testing1.exe", "/auto")
plugin command("Advanced Systems.dll", "task scheduler/daily triggers", "6/16/2014 9:25:55 AM", 1, 0)
}
}
ui button("Edit") {
plugin command("Advanced Systems.dll", "task scheduler/edit (dialog)", "Test Task", "\\kojak")
}
ui button("get") {
plugin command("Advanced Systems.dll", "task scheduler/get", "\\kojak", &test)
}

I updated please trial

Link to post
Share on other sites

V2.1.0.1

 

Fix:
- "task scheduler/edit (dialog) command isnt working.
- "task scheduler/get" isnt working on tasks in custom folders. It can only get the main task scheduler folder

Link to post
Share on other sites
  • 2 weeks later...

Hi Pash,

The text to speech command currently save the wav file as 44100 Hz. Is there any way the wav files could be saved as 48000 Hz?

 

Thanks

Link to post
Share on other sites

Hi Pash,

The text to speech control currently save the wav file as 44100 Hz. Is there any way the wav files could be saved as 48000 Hz?

 

Thanks

No way to do it (It is a library package)

Link to post
Share on other sites
  • 4 weeks later...

I've just purchased the Plugin in an attempt to stop the Browser.exe crashes causing the process to stall.

 

I have tried inserting the disable windows error reporting node both as the first line of the procedure and also within the on load container but I am still getting the browser,exe crash  window.

 

I am running the procedure on two XP machines.

 

Am I doing something wrong, is there any documentation or tutorial that I should be referring to?

 

Best regards

 

Martin  

post-4466-0-57197400-1405853246_thumb.png

Link to post
Share on other sites

I've just purchased the Plugin in an attempt to stop the Browser.exe crashes causing the process to stall.

 

I have tried inserting the disable windows error reporting node both as the first line of the procedure and also within the on load container but I am still getting the browser,exe crash  window.

 

I am running the procedure on two XP machines.

 

Am I doing something wrong, is there any documentation or tutorial that I should be referring to?

 

Best regards

 

Martin  

Hello.

for "Browser.exe crashes" is not "windows error"

but is "Ubot Studio error"

 

if you want disable "Browser.exe crashes" (Ubot Studio error)

use plugin "Advanced Ubot" >> "auto close browser crash"

 

 

 

 

 

Best regards

Apichai P.

Link to post
Share on other sites

Hello.

for "Browser.exe crashes" is not "windows error"

but is "Ubot Studio error"

 

if you want disable "Browser.exe crashes" (Ubot Studio error)

use plugin "Advanced Ubot" >> "auto close browser crash"

 

 

 

 

 

Best regards

Apichai P.

 

 

Thanks, I was thrown because early in this thread macster asks "still don't understand, does it prevent the opening of browser.exe crash windows or not !?" and the answer was "Yes" maybe that should have been a "Yes, but".

 

I've obviously bought the wrong add-in but there is enough good stuff in here that I am sure I will make use of I just hope the other add-in solves the browser.exe crash problem.

Link to post
Share on other sites
  • PRO locked this topic
Guest
This topic is now closed to further replies.

×
×
  • Create New...