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

Powershell - Suppress errors witihn a function (Out-Null) how to get it working

Ive found a useful powershell script on this site with a function for counting files/folder sizes. Im using this because it is fast and low memory use for large files/folders. The problems is that when it encounters a folder it doesn't have access…
Will
  • 89
  • 2
  • 10
0
votes
1 answer

How to set time for silent mode Android

I have an app of school hours and put the option to mute the device during the time stipulated by the user (beginning and end). However there is only the option to enable and disable this feature. How can I do this then?
Pedro Igor
  • 19
  • 8
0
votes
0 answers

Install JMF in silent mode via C#

Is there any way to install JMF in silent mode using C#? I have jmf.iss and JMF setup.exe and I'm having problems setting the silent parameter: string[] programArray = {"SETUP.exe","Java-jre-7u45-windows-i586"}; foreach (string path…
user3313131
  • 583
  • 2
  • 7
  • 9
0
votes
2 answers

Silent printing of an existing pdf to an network printer in c++

I need to print an existing pdf to a local network printer using C++ silently. Is there any known sdk for this? I tried googling for the same.
0
votes
2 answers

How to install .Net 3.5 and 4.0 together?

I'm creating installer for one my application. This installer need to install .Net framwork as dependency. The problem i have is, i could not find single installer which install maximum upto 4.0 framework. Iy you look at .Net 3.5 installer it does…
baluchen
  • 749
  • 3
  • 11
  • 18
0
votes
1 answer

Use Private FRamework in Xcode Celestial

I'm a Xcode beginner so I would really appreciates if the answers were as much detailed as possible (if image could be included it would be best) I would like to use the celestial private framework, I do not care if it get rejected by the app store…
Joseph Azzam
  • 105
  • 1
  • 14
0
votes
1 answer

What is the equivalent of a .pyw file in C++?

So I know that the python language has .py and .pyw extensions,the difference being .pyw run silent and there is no pop up, is there something like this in C++? If not, is there something I can put my code to run it silently? Of an alternative way…
Brooks
  • 359
  • 3
  • 9
0
votes
1 answer

Create silent installation using .iss

I have successfully created the .iss file inside the installer folder. But i have a problem calling it. Command: $Process = [Diagnostics.Process]::Start("C:\temp\Setup.exe", "/S /SMS /f1c:\temp\abc.iss") $Process.WaitForExit() There is no…
forsaken
  • 3
  • 4
0
votes
1 answer

Detect hardware mute button

How to mute application sound when hardware mute button on iPhone and iPad is on.I want to detect that whenever hardware mute button is turned on and off my application sound will be turned on and off.
0
votes
1 answer

Phonegap notification.beep ignore silent mode

Hello I'm using cordova 2.7.0 and I need to use the notification.beep() method. But I've a problem, my app rings even if the phone is in silent mode. any suggestions? I'm using iphone 5.
MatteoC
  • 141
  • 1
  • 9
0
votes
1 answer

Unmute stream in silent mode

I'm writing app that should play sound notification even in silent mode. I don't want to temporarily turn off Silent and roll it back late. I'm using ALARM stream for that now. Usually it works proper, because by default ALARM stream not muted in…
nickkadrov
  • 488
  • 2
  • 12
0
votes
1 answer

Android javascript api silent mode

I am writing an app that works a bit like 'do not disturb' but with a timer. So I want to set the phone onto 'silent mode' for a while and then switch it back to the original volume. I also want to keep the app running (i.e. keep screen on) for the…
user1593388
  • 13
  • 1
  • 5
0
votes
1 answer

How to detect iPhone Silent Button Status in iOS6

I have been using following code to detect the iPhone silent button status but it sometimes worked but usually dont work. I have searched alot but wont be able to figure out the solution yet. -(void)playWordSoundWithFile:(NSString*)filePath…
0
votes
1 answer

Run VB.NET application is silent for distribution

I have created an application that installs and edits configuration settings for a 3rd party application. The application works fine but I need to prepare it for deployment, which means I need to edit it so that it can run silently. I've created it…
S Chase
  • 43
  • 1
  • 10
0
votes
0 answers

Silent msi install command

I have 10 .msi instalers in a folder.I want to install all one by one silently without giving the source path(Source may be anything like follows E:/MyInstallers or D:/Installers). How to write a .bat file for the above action in windows7 and…
Programmer
  • 390
  • 2
  • 17