C# WinForms: FUSLOGVW.exe - windows

I have a problem with an application. I am testing it in a virtual machine, windows 7, and I have installed FUSLOGVW.exe via Windows SDK package. Virtual machine does not have any other software installed. When I execute FUSLOGVW.exe and click on settings button, the dialog window that appears, show all the options disabled and I cannot set the log directory when I want to put the logs. Is something missed?

Make sure to run this with admin rights.

Related

Why do installers not open in Windows Server 2016?

I've downloaded a few different wamp packages on my Windows Server 2016 machine but none of the installers will launch. Nothing happens when you double click the installers after downloading. I've updated Windows, allowed "side loaded apps" in Control Panel, I've tried running as administrator... Running out of ideas. I was able to install Firefox, but so far no other installers will launch.
Server admin responded back as soon as I posted the question...
"A new Windows 'feature' recently added through Windows Update now requires you to unblock all applications downloaded from an external source.
Right click on the .exe you wish to use, select properties, then click unblock at the bottom."

Built-in Administrator account has no rights for some actions in Windows 10

At some point I started getting following problems in Windows 10.
Microsoft Visual Studio 15 is showing the following error when I'm trying to run compiled Windows universal application:
Unable to activate Windows Store app ... The activation request failed
with error 'This app can't be activated by the Built-in Administrator'
After trying to personalize Windows 10 desktop I'm getting the error message:
This app can't be open Settings can't be opened using Built-in
Administrator account. Sign in with a different account and try again.
Few days ago everything was working fine with the same user account.
How can I fix it?
The problem was related with User Account Control (UAC) settings. Some freshly installed software has disabled UAC.
Reverting UAC to default level and reboot helped me in both problems.
How to set UAC Settings
Open User Account Control Settings by clicking the Start button, and
then clicking Control Panel.
In the search box, type uac, and then
click Change User Account Control settings.

Unable to see IIS on my pc after installation

I have downloaded IIS 7.5 from following url http://www.microsoft.com/en-us/download/details.aspx?id=1038 and installed on Windows 7 Home Basic. The installation was successful. Even though I'm unable to see IIS in my start menu. When I typed inetmgr in run and clicked on OK, it's showing an error message.
I typed iisreset in command prompt. It's restarting the IIS. When I tried to install IIS from Windows Platform Installer, it's showing IIS as installed on my PC. But, I'm unable to see the IIS.
Please help me out.
In the Control Panel, click Programs.
Click Turn Windows features on or off.
You may receive the Windows Security warning. Click Allow to continue. The Windows Features dialog box is displayed.
Expand Internet Information Services. Additional categories of IIS features are displayed. Select Internet Information Services to choose the default features for installation.
Expand the additional categories displayed, and select any additional features you want to install, such as Web Management Tools.
If you are installing IIS for evaluation purposes, you may want to select additional features to install. Select the check boxes for all IIS features you want to install, and then click OK to start installation.
The progress indicator appears.
IIS is now installed with a default configuration on Windows Vista or Windows
Next, you can use Internet Information Services Manager to manage and configure IIS. To open IIS Manager, click Start, type inetmgr in the Search Programs and Files box, and then press ENTER.

VB6 Application Silently Crashes on Startup/Form Loading

I have a VB6 app that loads initially (for a small prompt to enter a license key, only on the first time). It works fine on my machine (windows 7).
I had complaints of it crashing on someone else's machine (both xp and 7), so I made a Windows XP virtual machine. I installed it on the virtual machine, it crashed. I wanted to see where it crashed so I installed Visual Studio on the virtual machine so that I would get a debug prompt. When I ran the program again, it worked.
I am more familiar with C++ and had these kinds of problems, so I figured it was some sort of runtime issue.
I found this VB6 SP6 Redistributable Runtime:
http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=24417
I installed that, and it still wouldn't run.
Any ideas where to go from here?
Edit:
I have tried depends.exe, it only shows MSJava, which I've heard I can ignore. Does depends.exe also show things like .ocx (Active X controllers?) that are required?
Also, from the cmd prompt, %errorlevel% doesn't seem to get populated. Is that a VB6 things, or does that indicate that this is truely a crash and not a user exit?
Open the Visual Basic project and check both "References" and "Components" under the "Project" menu.
Since it is crashing with the VB runtime installed it is likely a component that you have referenced in the project that either does not exist (or is not registered) on the client under test.
This should be a simple fix.
I had the same problem on my windows 7 computer.
I have uninstalled everything, changed my windows theme to Windows Classic.
I changed following properties of VB setup file.
Right click on setup.exe and go to properties and in compatibility tab change the compatibility mode to windows XP SP2. And in settings uncheck the following check boxes.
Disable Visual themes
Disable Desktop composition
Disable display scaling on high DPI settings.
Run this program as an administrator
And have completed installation.
Followed by installing VB 6 service pack 6 from here.
http://www.microsoft.com/en-us/download/details.aspx?displaylang=en&id=24417
Hope it helps.
It may require something else other than just the runtime, have you tried viewing it with dependency walker http://www.dependencywalker.com/ on the machine that it crashes on?
It should quickly point out any missing references.
Maybe try again, create a new VM, but install the remote debugger instead of the full VS.
You should create an installer for your application. There may be more dependencies than just the VB6 runtime. A good installation tool will detect at least some of necessary dependencies for you. Have a look at this question or this question

Web Setup Project not working

'The installer was interrupted before [project name] could be installed. You need to restart the installer to try again.'
I just moved to Win7, and I cannot get the .msi files to install from my Web Setup Projects that are built on that machine. The same projects build and work fine on my other Windows XP, IIS6, VS 2008 SP1 machine. I'm not sure if this is a IIS7 or Win7 issue, but I've done the following:
I have all the IIS/ASP.net compatibility settings checked.
I am an administrator, and I have UAC turned off.
I get the following error when I even try install the .msi file on the Win7 machine and on our existing development server (windows 2003 with IIS6).
I've restarted the windows installer service, and I've added logging for the installer but there is nothing that is showing me what the problem is. Any help would be MUCH appreciated.
I'm running Visual Studio 2005 and had the same problem as you described when moving to Windows 7.
After trying my Web Setup Project .msi file on another computer also running Windows 7 I found that it worked.
When I looked in the "Windows Features" dialog on the working computer I noticed that the IIS had IIS 6 compatibility features turned on. I enabled the same feature on my computer and after that I could install my setup project.
Open up "Control Panel > Programs > Turn Windows features on or off" in Windows 7 and in the "Windows Features" dialog go to "Internet Information Services > Web Management Tools > IIS 6 Management Compatibility" and check the feature "IIS Metabase and IIS 6 configuration compatibility".
Run the installer with full verbose logging:
msiexec /i /lv installLog.txt
Then search the installLog.txt file for "Return Value 3"
This will indicate the exact problem.
Additionally this may help:
http://blog.dragonsoft.us/2009/01/02/visual-studio-2008-and-iis-7/
I solved this by running 'regsvr32.exe actxprxy.dll'
It resolved the following:
Not able to create valid .msi web project in VS 2008.
Start Page in VS2008 was not displaying rss feed in the main window.
IE was not opening up shorted url links to a new tab (in twitter for example).
I suspect this was because of redirects, but I'm not sure. I'm guessing this was a bug in the install process, so I hope this helps others.

Resources