Showing posts with label Win7. Show all posts
Showing posts with label Win7. Show all posts

Tuesday, September 10, 2013

Installing ODI 11.1.1.7.0 on Windows 7 64bit

It sould be easy to install any software nowadays, but it is not. Specially painful is installation of packages from big companies, because these are huge packages with lot of dependencies.

My last challenge was to install Oracle ODI Studio on my laptop and it was real problem to even start the installer. After some investigation I find this article from google, that solve my problem.

Some important points that I discovered:
  1. Win7 64bit jre and oracle installer are working together (despite some posts that claim otherwise)
  2. Command order to start Oracle ODI installer
    run cmd.exe as Administrator (It does not work without it, despite installer asks Administrator password)
    setup.exe -jreLoc C:\Progra~1\Java\jdk1.7.0_29
Honestly I am disappointed that this information is not provided in Oracle readme :-(

Wednesday, March 20, 2013

Windows7 hotspot

During vacation I was with family in Trysil doing mountain skiing. There was problem with Internet as always in Scandinavia (in Estonia we have free Internet almost everywhere). I buy Cloud Internet for 7 days, but there were more internet devices in our team. It was for me first time to build Internet hotspot with my computer.
I knew how to do it with Android phone, but because I paid with computer there was no possibility to switch internet connection over to phone. After 5 minute googling I found this article.

So solution is simple
  1. Run as Administrator cmd.exe
  2. netsh wlan set hostednetwork mode=allow ssid=<network_name> key=<password>  keyUsage=persistent
  3. netsh wlan start hostednetwork

  • Open Control Panel and go to Network and Sharing Center.
  • Click Change Adapter Settings.
  • Right click your Internet connection and select Properties.
  • Click the Sharing tab.
  • Check the box that says “Allow other network users to connect.”
  • Choose your virtual Wi-Fi adapter and click OK.
The only problem is how to keep network live when computer is not active. The solution to restart network is to run
  1. netsh wlan stop hostednetwork
  2. netsh wlan start hostednetwork