I am trying to play an M4A (MP4 Audio) file directly from the internet using a URL. I'm using NAudio with the MediaFoundation to achieve this: using (var reader = new MediaFoundationReader(audioUrl)) //exception using (var wave = new WaveOutEvent()) { wave.Init(reader); wave.Play(); } This works well on two test systems [...] read more
For some reason, on monday, code that was working the previous week suddendly started giving me the following error. System.DirectoryServices.DirectoryServicesCOMException (0x800700EA): More data is available. Which happens when I try to do a FindAll against an Ad query I made a small console application and was able to reproduce the [...] read more
The situation: I want to setup PowerShell remoting (it's working on my other 2 machines). I run: winrm quickconfig Result: winrm : WSManFault At line:1 char:1 + winrm quickconfig + ~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (WSManFault:String) [], RemoteException + FullyQualifiedErrorId : NativeCommandError Message ProviderFault WSManFault Message = More data is [...] read more
When giving the command Enable-PSSRemoting with or without the -Force parameter this error occurs Set-WSManQuickConfig : More data is available. At line:50 char:33 + Set-WSManQuickConfig <<<< -force + CategoryInfo : InvalidOperation: (:) [Set-WSManQuickConfig], InvalidOperationException + FullyQualifiedErrorId : WsManError,Microsoft.WSMan.Management.SetWSManQuickConfigCommand I've looked at this resource for help in solving this problem http://www.howtogeek.com/117192/how-to-run-powershell-commands-on-remote-computers/ [...] read more
I am unable to get around the following Powershell remoting error in my Windows 10 Machine. Firstly I am attempting to execute the following. PS: >Start-DscConfiguration -Wait -Verbose -Force -Path $outPath VERBOSE: Perform operation 'Invoke CimMethod' with following parameters, ''methodName' = SendConfigurationApply,'className' = MSFT_DSCLocalConf igurationManager,'namespaceName' = root/Microsoft/Windows/DesiredStateConfiguration'. The client cannot [...] read more