If JazzSm is installed in a virtual directory, DWC installation fails on Win 10 - workload-scheduler

Dynamic Workload Console installation fails on Windows 10 if JazzSm is installed in a virtual directory (i.e. C:\Program Files). A pop up appears asking for the credential.

to circumvent the problem, insert the JazzSm credentials or install both Dynamic Workload Console and JazzSm in a non-virtual directory.

Related

Install vb.net application

I have created vb.net 2005 set up project for a my customer. when i run the setup.exe it is in a windows xp machine it prompts a message as "An error occured while downloading a required file. you may retry downloading the file or cancel the setup. "
when i check in the install log file the last details as below
"Downloading failed with HRESULT=-2147024891"
this happens in only a one pc which is xp installed and in other xp machines the setup is run successfully. Also .net framework 4 is installed in this pc.
please help me on this issue..
If its an MSI package, you may have an outdated MSI installer on there...?.
use this link to get an updated MSI installer.
http://www.microsoft.com/en-za/download/details.aspx?id=8483

Websphere 8.5 Installation - Windows Vista Administrative Privileges Error on Windows 8

I'm installing WebSphere 8.5 for developers on my local computer, and I'm running into an error message A screenshot and the message is listed below.
http://imgur.com/DBAb4Gm
"To run an application without administrative privileges on the Windows Vista operating >system, you must install the application package into a directory that is not virtualized. >The Program Files directory on Windows Vista is virtualized. To run an application with >administrative privileges after it is installed, right-click the package, and click "Run as >administrator"."
I'm actually on Windows 8 (64-bit), so this is a bit odd. How do I defeat this error?
Hello,
Install it into non virtualized directory (so not into Program Files).
It's always the best to use the shortest path possible, when installing Java based stuff on Windows. I prefer C:\IBM\WebSphere\AppServer etc.
The System requirements page suggests WebSphere Application Server for Developers 8.5.5 being supports Microsoft Windows 8.
WebSphere Application Server 8.5.0.1 seems to have introduced Windows 8 support as well.

How to deploy windows 8 Metro app package on to a Surface RT tablet?

I am developing a C#/XAML METRO Application I created the package which generated the Add-AppDevPackage.ps1 and all other files from VS2012 but:
I wanted to know how to deploy this package in real device for testing in Surface RT tablet?
Option 1: Take that folder containing the .appx file and copy it to wherever you need to deploy it. then right click on the .ps1 script and select "run with powershell", which will install the package on the other machine
Option 2: download the remote debugging for visual studio onto the other pc and run it. Then from your visual studio machine select "remote machine" and select the other pc from there
I found this link while searching for the same information as the OP:
http://blogs.msdn.com/b/spike/archive/2013/05/20/how-to-deploy-your-windows-store-app-to-surface-rt-for-testing.aspx
Hopefully this is helpful to someone who comes across this post. Basically, you will need to build the packages and copy them to the device, and then get your developer license installed on the device as well.
Complete instructions in the linked article.
One issue I came across was at the "Run with PowerShell" of the .ps1 file, I was getting signing certificate errors. I had to manually install the .cer file, and you have to make sure to put it in Certificates (Local Computer) > Trusted Root Certification Authorities > Certificates node or the Certificates (Local Computer) > Trusted People > Certificates node for the signing certificate to be trusted by Windows and allow you to install your app package.

OpenDS - Unable to uninstall

I installed OpenDS on Windows 7 under C:\Users\ on port 389. (Admin privileges available)
However, I am unable to uninstall it. (I've tried using command line, GUI, stop-ds.bat, Killing the windows service, running as Administrator)
Any suggestions?
I assume you failed to unregister the Windows service.
Otherwise, uninstalling OpenDS is as simple as simply deleting the whole installation directory

Oracle Instant Client with web application

I have a visual studio solution with an ASP.NET 3.5 web application (WCF host) and a test project. I wanted to use the Oracle Instant Client (v11, via NHibernate) to create Oracle connections without having the Oracle client tools installed on every "involved" machine (dev, CI server, test server, production server).
The weird thing is that on my development machine (x86) my tests run without problem, while my web application still gives me the following error message: System.Data.OracleClient requires Oracle client software version 8.1.7 or greater
Things I ruled out already:
The bin folder has read & execute permissions for everyone
The DLL's are unblocked (windows 7)
Problem occurs with both Visual Studio Development Server and IIS 7
I've also tested this on a machine with Oracle client tools installed and that works
I even managed to get the tests running on our x64 CI server (more info).
Anyone has a clue on what I am missing?
I see this error almost every time I set up Oracle on a new machine.
Check that the oracle bin folder is in your path
Give read and execute permission to everyone on the client folder (on my machine C:\oracle\product\10.2.0\client_1)
Changing permissions may not take effect until you reboot your machine.
EDIT:
From your comment, steps 2 and 3 are irrelevant for Oracle Instant Client. Hoverer, I would guess that the problem is still that the system cannot find the Oracle Instant Client DLLs. It would be worth putting the location of these DLLs into your path and seeing if this resolves it.
From http://www.oracle.com/technetwork/database/features/instant-client/index-100365.html
Installation Instructions
Installation Steps:
Download the appropriate Instant Client packages for your platform. All installations REQUIRE the Basic or Basic Lite package.
Unzip the packages into a single directory such as "instantclient".
Set the library loading path in your environment to the directory in Step 2 ("instantclient"). On many UNIX platforms, LD_LIBRARY_PATH is the appropriate environment variable. On Windows, PATH should be used.
Start your application and enjoy.