Does anyone have a recommendation for an application (non-cloud) that searches through Windows (server) logs to find patterns?
Related
I am developing windows app and i have side-loaded the app. For some debugging purpose i need to inspect the installation directory.
I looked for it in below directory but can't see it there.
C:\Program Files\WindowsApps
Where are the windows 10 apps installed on drive?
You can find your application data in the following path ..
C:\Users\Default\AppData\Local\Packages\(Your packageName)
The package name is usually somewhat like this "Microsoft.Windows.Cortana_cw5n1h2txyewy".. you will need to identify your package accordingly..
I'm very confused about the status of persistent handlers in Windows for searching. On the one hand, the MSDN documentation on the subject implies at the top of the page that they are unavailable in Windows 8:
Note Indexing Service is no longer supported as of Windows XP and is
unavailable for use as of Windows 8. Instead, use Windows Search for
client side search and Microsoft Search Server Express for server side
search.
On the other hand, I have an application whose code I'm looking through that still goes through the registry to find a file extension's persistent handler, load the DLL, and get the info through the IFilter interface. Whatsmore, in Windows Server 2012 (which is the server equivalent of Windows 8), registry keys in the form of HKEY_LOCAL_MACHINE\Software\Classes\.docx\CLSID\{PersistentHandlerGUID}\PersistentAddinsRegistered still exist, and still have values set that point to persistent handlers. So what's the deal? Are they deprecated? Is it just a lie that they are unavailable in Windows 8?
No they are not deprecated, but they have been renamed to "Filter handlers". When Windows (Desktop) Search was just a standalone add-on it also used the IFilter interfaces present on most machines. Windows Search is now part of Windows and has relieved the Indexing Service of its duty as the system wide "extracted text from files" indexer.
The PersistentHandlerGUID registration documentation under the Windows Search part of MSDN is located here.
We would like to start a remote process on a Windows System within a HTML5 application.
On Windows Systems such a Task could be solved like e.g. described here.
But how to solve such a task e.g. on android Devices?
Any idea whether a generic approach in HTML5 exists to solve this issue?
We solved this issue by implementing a Java Web Service which is listening on the Windows System. –
I um using Windows Azure toolkit for Windows Phone from codeplex. After creating a Windows Phone Cloud Application from a template, I started it on localhost and it run succesfully. Then i followed instructions on Codeplex on how to deploy on Azure, and published it also succesfully - I got an url to the website, but after typing the url in browser the website didn't load, and after a while there was a timeout. I tried both production and staging deployment. Can't resolve why this happens - did anyone faced familiar problem?
The publish completed successfully however this application is not running properly on Windows Azure.
As you are using Web Role type WP7 Phone application look for all the steps suggested in the link below:
Webrole is not starting and always busy
Also if you still could not find the root cause open a Windows Azure support ticket and you will get some help to find the root cause.
You may want to look at:
http://msdn.microsoft.com/en-us/library/windowsazure/hh134844.aspx
Remoting into the VM is a great way to see what is going on. Does it come up if you want for a while (maybe 30 minutes)?
I am writing an application using Delphi 2010. I would like to have my application start up when windows starts up. I need this to work in the latest versions of Windows XP, 7.0, and the latest servers.
Would storing it under the following key work, or do i need to do something else?
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run
thanks for any help
That will only result in it starting when the user running the installation process connects. If you want it to start when Windows starts then try under HKLM.
Be aware that these Run key entries execute when a user logs on. To launch a task on startup, it's better to write windows services, which is quite easy to do in Delphi.
A little help on services: http://delphi.about.com/od/windowsshellapi/a/delphi-windows-service-applications.htm