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
12
votes
3 answers

Play sound in Android notifications although phone silent mode is set

My app is showing notifications, and when a notification is shown, a sound is played. But when my phone is on "silent mode" the notification is not played. I want to "override" volume settings, and play a sound although silent mode is set. There is…
Sergio Viudes
  • 2,714
  • 5
  • 26
  • 44
11
votes
2 answers

Play sound on iOS 9 in silent mode

In iOS 9 (Xcode 7, Swift 2.0) I'm trying to play a sound in silent mode using the following code: try! AVAudioSession.sharedInstance().setCategory(AVAudioSessionCategoryPlayback, withOptions: .MixWithOthers) try!…
lammert
  • 1,456
  • 14
  • 20
11
votes
1 answer

Makefile: silence the "make[N]:" line specifically

Part of my makefile has the following code: target.o: cd dir; $(MAKE) Where the file target.o has its own makefile inside of directory dir. During compiling, I get the following output lines: make[1]: Entering directory `dir' ifort -c…
Nordico
  • 1,226
  • 2
  • 15
  • 31
11
votes
2 answers

MSI installer calling another MSI installer in silent mode using WiX

I'm using WiX to make an MSI installer to call another MSI installer. I can resolve this situation in UILevel=5 (Full UI) mode. My solution is add a CustomAction to the UISequence table that call another MSI. It will not get error code 1500:…
Klaus
  • 203
  • 1
  • 2
  • 11
9
votes
1 answer

Silence PHP 7.4.8 server request logs "Accepted", "Closing"

After updating from PHP 7.3 to PHP 7.4.8, I have noticed the server has started to log "Accepted", "Closing" for all requests and sometimes: "Closed without sending a request; it was probably just an unused speculative preconnection". [Wed Aug 5…
9
votes
3 answers

Creating a custom action in Wix for use in silent installation

We use Wix to create our MSI installer. We have a few custom actions that work great when using the installer normally with a GUI, but when using silent install (with "msiexec /qb /i" ), the custom actions won't run. What can I do to make them work…
Udi Wertheimer
  • 293
  • 1
  • 3
  • 7
9
votes
1 answer

vsto installer - silent mode problem

Background: I am making a VSTO 4.0 add in for Outlook 2007 which enables users to transfer their mail items to a CRM database. Requirements: The installation has to be silent without users knowledge. It will be in a Custom Action in the Installer…
Wojtek Turowicz
  • 4,086
  • 3
  • 27
  • 38
8
votes
1 answer

Silent Windows Installer installer without rebooting automatically

Currently I have an MSI which performs a major upgrade, and it is launched as: msiexec.exe /i installer.msi /qn REBOOT=ReallySuppress My question is regarding that particular property REBOOT=ReallySuppress: does this mean it will not restart the…
Santi Agüero
  • 3,143
  • 8
  • 27
  • 39
8
votes
2 answers

Swift - AVAudioPlayer still playing sound when device is on silent?

I am making a fairly basic app and have been exploring the use of AVAudioPlayer to play sound in my app, but I am having an issue where it plays sound even when the device is on silent. This is the code I am using: var audioPlayer =…
Luke Martin
  • 395
  • 4
  • 14
7
votes
2 answers

Silence git (no errors, no output, don't say a word)

I'm using git to manage some custom packages. If the package is not in the first repo, I want to run a second command that tries another source. I don't need to tell the user that this is happening. The user doesn't need to know git exists. if ! git…
offthegrass
  • 446
  • 1
  • 6
  • 16
7
votes
1 answer

iOS silent push notification only works when connected to xcode

I have an odd issue. I recently updated my Xcode to 6.1.1 to make a change to an app I previously released with Xcode 5 (working great). Now for some reason with the new Xcode when I test my background silent push notification it only completely…
Pabs
  • 243
  • 5
  • 12
7
votes
1 answer

run Watin in silent mode, using Team City

I what to run may watin tester in silent mode and how I can get Team City to run my tests ?
SpeedyNinja
  • 371
  • 3
  • 14
7
votes
1 answer

How do I detect silent install?

If an NullSoft Install System installer is launched with the /S switch, how can I detect it from the script?
joelsand
  • 2,245
  • 2
  • 21
  • 31
7
votes
2 answers

Invoke-Expression: Positional parameter cannot be found that accepts argument /s

I have a .ps1 script which contains a line Invoke-Expression -Command "C:\Builds\$BuildName /s /v`"/l*v c:\build_install.txt /qn`""
This is performing Silent installation of a product. Now, if I try to run this command from Linux box through…
mcmattu
  • 101
  • 1
  • 2
  • 5
7
votes
0 answers

Why is svchost.exe terminating my C# application?

For some reason, my C# application is being terminated by svchost.exe and I'm trying to understand why. It was terminating the application silently until I turned on Silent Process Exit logging using Gflags.exe from the Windows Debugging Tools. It…
Mike
  • 185
  • 1
  • 1
  • 7
1
2
3
23 24