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
7
votes
1 answer

Setting {silent: true} when resetting a collection still triggers the 'reset' event

I am trying to reset my collection without triggering the 'reset' event. I have set up my collection to listen to both 'reset' and 'add' events @.listenTo(@options.muses, 'add', @addOne) @.listenTo(@options.muses, 'reset', @addAll) When I click on…
Zhen
  • 12,361
  • 38
  • 122
  • 199
6
votes
1 answer

iOS Local Push Notification Override Mute/Silent Mode

I am currently working on an iOS project that requires me to send a local push notification to a user with a sound. The issue is that I want the sound to play even if the device is muted or in silent mode, but I am not sure if this is…
Alex Grinman
  • 61
  • 1
  • 5
6
votes
1 answer

Non-interactive authorization with Google OAuth2

I have created a Java application that performs syncing of MS Active Directory with Google Groups. It is non-interactive application that suppose to be executed by the cronjob at night time. It does work perfectly on my laptop (DEV environment). My…
Gary Greenberg
  • 468
  • 1
  • 9
  • 22
6
votes
2 answers

Silence Android Phone in Java

How can I silence the android phone in java? A code sample is VERY helpful.
Mohit Deshpande
  • 53,877
  • 76
  • 193
  • 251
6
votes
4 answers

Silent Installation of SQl Express 2005

Can anyone please let me know the procedure to perform silent installation of SQL Server Express 2005 and the way to specify the installation parameters.
varsha
6
votes
1 answer

How Make iPhone to silent mode on/off using objective c

I am creating one app in which i want to detect that iphone is on silent mode or not. I have already gone thought the below link Detecting the iPhone's Ring / Silent / Mute switch using AVAudioPlayer not working? Switching between silent mode and…
Crazy Developer
  • 3,464
  • 3
  • 28
  • 62
6
votes
3 answers

NSIS - Silent Autoupdate Application

I have an NSIS install kit for my .net c# application. Is there a way to silently autoupdate my application, considering that I already downloaded the new update (new NSIS app version) to local computer ? Thanks! :)
Adrian Pirvulescu
  • 4,308
  • 3
  • 30
  • 47
5
votes
3 answers

Printing a Report Server-Side and Silently

I am trying to write a program that allows me to print a ssrs report(.rdl file) from the server-side code to a predetermined printer without any pop ups asking me which printer I want to use can this be done?
user1271242
  • 223
  • 2
  • 3
  • 7
5
votes
1 answer

Can an iOS app switch the device to silent mode?

Is there a way to programmatically set the device my app is running on to silent mode? The silence must encompass the entire device, not just my application.
kevbot
  • 103
  • 2
  • 7
5
votes
3 answers

Update application silently while running

My App will be initially deployed with Windows Installer. The key characteristics of the solution I am looking for include: Support silent update while app is running (or automatically restart client) Easy to maintain and manage…
Liviu Mandras
  • 6,540
  • 2
  • 41
  • 65
5
votes
1 answer

Executing batch file from c# silently

I know this question has been asked previously and I have tried all the solutions given in those posts before but I can't seem to make it work:- static void CallBatch(string path) { int ExitCode; Process myProcess; …
user1439090
  • 792
  • 5
  • 12
  • 33
5
votes
5 answers

Create Batch file for iexpress

I am trying to use iexpress to run my batch file which will execute the 2 exe & 1 msi files for me. when i try to do it manually, it works. following is the code in my batch file. Start /wait %CD%\1.exe /q Start /wait %CD%\2.exe /q msiexec.exe /i…
Sangram Nandkhile
  • 17,634
  • 19
  • 82
  • 116
4
votes
3 answers

How to silent install Postgresql on Windows 7

I want to install "postgresql-9.1.3-1-windows-x64.exe" on windows 7 silently. Where can i find msi install of postgresql-9.1.3.1 Thank you Zak
user902271
  • 61
  • 1
  • 2
4
votes
4 answers

How can the terminal output of executables run by Python functions be silenced in a general way?

I want to suppress all of the terminal output produced by a function that runs executables. I have attempted to suppress the output of a Python function by using a context manager that temporarily redefines stdout and stderr each time the function…
d3pd
  • 7,935
  • 24
  • 76
  • 127
4
votes
2 answers

Why doesn't U-Boot disable the console output

I have this system which is accessed by a serial Debug Port. I want to disable all of the output, that was made during the U-Boot boot. Therefore there is the setenv silent 1 parameter, which i put into the BOOTCMD string like: #define…
user3085931
  • 1,757
  • 4
  • 29
  • 55
1 2
3
23 24