Questions tagged [silent]

Silent refers to the suppression of messaging of a process or thread. Such threads may typically send messages over any of various channels, including [stdout] or [stderr].

Overview

Silent refers to the suppression of messaging of a process or thread. Such threads may typically send messages over any of various channels, including [stdout] or [stderr].

347 questions
0
votes
2 answers

Control goes to next statement immediately after running a command using Run method

I have script to uninstall a package say pkg_1 using it's uninstallstring (i.e. setup.exe -remove). After that it is trying to remove another package say pkg_2. The uninstallation of pkg_1 takes around 1 to 2 minutes. the script looks like as below…
gopu
  • 13
  • 1
  • 8
0
votes
0 answers

Executing .sh file in Eclipse using java

public class TestNetbeans { public static void main(String[] args) { try { ProcessBuilder processBuilder = new ProcessBuilder( "./netbeans-7.0.1-ml-linux.sh", " --silent"); //…
0
votes
1 answer

Will an NSLocalNotification Sound Play When the Phone is set to Silent?

Is it possible for an NSLocalNotification to play an audio file when the ringer switch is set to OFF?
meggar
  • 1,219
  • 1
  • 10
  • 18
0
votes
1 answer

How to install eclipse plugin in Lotus Notes client silently/Programatically

I need to install an eclipse-based plugin in Lotus Notes Client 8.5. The requirement is that this should not have any user involvement. I want to know is there a way around for this kind of requirement. Also is this possible if the system is a…
dc4ual
  • 95
  • 9
0
votes
1 answer

Performance issue when I have to set attribute of a model in multiple places (model bind to a change event)

I am binding my modal to the change event @model.bind('change', @someAction) Will performance of my app be affected if I am required to set/change attribute of my model and multiple places i.e. @model.set({someAttr:'attributeA'})? Does doing a…
Zhen
  • 12,361
  • 38
  • 122
  • 199
0
votes
1 answer

Get parameters from WiX packed .EXE

Few days back I asked a similar question. I have an application that is using WiX (Windows Installer XML) as a package manager to create a .exe file with some supporting files (folders and .dlls). Double clicking this .exe will extract into a new…
Sandy
  • 11,332
  • 27
  • 76
  • 122
0
votes
0 answers

Silent Print in Flex application

I have a situation here to print one of my reports with given two options to user: Print with Preview Print Silently(No popup to choose for printer; default printer configured will automatically get a print job) 2nd point - How can we implement it…
GOK
  • 2,338
  • 6
  • 34
  • 63
0
votes
1 answer

Facebook API silent login

I am trying to use facebook API to provide a silent login feature. Application has to login onto facebook without prompting for user name and password. The authentication can be done through the application. I want to know whether this can be done…
0
votes
1 answer

can i install the .exe file without user interaction

Can I install the .exe file without user interaction (means without click on the next or install button) I have write the code to call .exe file but, it doesn't install silently in background. Process p = new Process(); p.StartInfo.FileName =…
john
  • 29
  • 2
  • 6
0
votes
0 answers

Silent Install of Oracle using WiX

I am creating an Installer using WiX, and as part of this I am installing Oracle also. I am using CA for doing this. But it fails without executing.
Ravz1234
  • 129
  • 1
  • 2
  • 12
0
votes
1 answer

Chrome silent printing issue

I'm having an issue using the --kiosk --kiosk-printing mode in chome. I'm using chrome 20.x. The first page prints fine, however all the next pages are coming entirely blank, not even header... Does anyone know of a fix? Also does anyone know of a…
boruch
  • 453
  • 3
  • 16
0
votes
1 answer

C++ daemon silence mode

I am writing daemon under unix system and using std::cout at the code to debug at no silent mode. When I start the process at daemon/silence mode, I close(STDIN_FILENO), STDOUT_FILENO and STDERR_FILENO to save resources on printing to std::cout.…
abrahab
  • 2,430
  • 9
  • 39
  • 64
-1
votes
1 answer

Weblogic domain creation

I got a requirement to install weblogic domain creation in silent mode. I searched for response file but didn't find any response file. can anyone please help me out? I found python scripts for that but its not working for me. can anyone help me…
-1
votes
1 answer

What would cause the inner contents of a `with` statement to not execute?

When I run the following code, no error messages are printed, and it seems to fail silently. I expected the string "BLAH" to be printed to the console. from contextlib import redirect_stdout import io # the initialism `io` represents `INPUT OUTPUT…
Toothpick Anemone
  • 4,290
  • 2
  • 20
  • 42
-1
votes
1 answer

NSIS Uninstall Silent mode run in current cmd

I write SetSilent in my nsis uninstaller, but when I call it from cmd, it opened in new cmd window. I need to run uninstall in my current cmd. Can you help me?