# VIDA INSTALLATION INFORMATION

## VIDA2014D\_RePack.iso Download

---

To get the 2014D\_Repack.iso Copy the magnet link in the line below to your clipboard.

```plaintext
magnet:?xt=urn:btih:1b2995ac6b8926893e3dea41c01ce92208b19c8d
```

<div class="toolbar" id="bkmrk--1"><div class="toolbar-item">  
</div></div>[https://www.matthewsvolvosite.com/](https://www.matthewsvolvosite.com/forums/viewtopic.php?t=97268&sid=b295573ffbd4bc888856b3266186f21e) Forum post about this topic

## WINDOWS 7

---

1. Mount the VIDA2014D\_RePack.iso file using PortableWinCDEmu-4.0.
2. RUN 01\_SQL.cmd
3. RUN 05\_WIN7.cmd
4. RUN 2014A-B-D-2099.exe
5. RUN 04\_SQL\_SP3.cmd
6. RUN VIDA 2014D UX3.exe
7. RUN SetupDiCE.exe
8. Reboot
9. Start VIDA

## WINDOWS 10

---

1. Manually install .net framework 3.5. 
    1. Control Panel\\All Control Panel Items\\Programs and Features\\Turn Windows Features on and off\\ Check mark the box for .Net Frame 3.5. Click \[ OK \] wait for .Net Frame 3.5 to install then reboot.
2. Mount the VIDA2014D\_RePack.iso (Right Click)
3. RUN 01\_SQL.cmd
4. RUN 02\_VIDA.cmd
5. RUN 2014A-B-D-2099.exe
6. RUN 04\_SQL\_SP3.cmd
7. RUN VIDA 2014D UX3.exe
8. RUN SetupDiCE.exe
9. Reboot
10. Use Volvo VIDA.vbs to start VIDA

## Passwords

---

- **admin**: Administrator
- 1: International Arabia and China
- 2: North America
- 3: Nordic Countries
- 4: Europe &amp; International except Arabia and China.

Using your regions password (1 to 4) will narrow down search results and prevent conflicting information.

## Errors

---

### If you get a X in the interface box. 

---

1. Run VidaMedia:\\Install\\Utils\\EnableIEHostingxxx.reg .
2. Make sure you run the right one for your operating system. 
    1. xxx =x64 is for 64bit operating systems.
    2. xxx =x86 is for 32bit operating systems.

### "VIDA cannot start as port 80 in already in use"

---

1. Click the start menu
2. Type in Services
3. Sort by Name
4. Scroll down to World Wide Web Publishing Service (W3SVC) and disable it

### UX3 upgrades the VIDA interface so that it work better with today's higher restitution screens. 

---

1\. Get VIDA up and running  
2\. Down load the Zip file below.   
3\. Unpack the UX3 Zip file.  
4\. Run the UX3 executable to install.   
5\. Restart Windows.   
6\. Wait for VIDA monitor to turn green.  
7\. Start VIDA.  
8\. Done

### %VIDA\_HOME%/patch\\filldb.cmd is a internal path to the to the 2099 patch. For some reason some environments have trouble find it. 

The 2009 patch is a self extracting WinRAR archive. You could use with WinRAR to unpack the 2099 patch with paths and run filldb.cmd from the hard drive.

### Windows 10 pro just made MS Edge the default browser. When VIDA starts in Edge I select 'open in IE' but it won't work.

---

I'm getting this error '**getCommToolSettingsObject(...),DiagnosticAllowed is not a function**'.   
  
To fix this error I had to open REGEDIT.   
  
Go to this folder  
  
**\[HKEY\_LOCAL\_MACHINE\\SOFTWARE\\Wow6432Node\\MICROSOFT\\.NETFramework\]**  
  
After clicking (DEFAULT) I then changed the DATA from 0 to **1**  
  
Ensure the EnableHosting Data is also set to **1**

Attachments

<figure class="image" id="bkmrk--10">![regedit vida fix.PNG](https://www.matthewsvolvosite.com/forums/download/file.php?id=89119)</figure>## Windows 10 Disable Password Expiration for Local Account(s)

---

PowerShell

```plaintext
Get-LocalUser | Set-LocalUser -PasswordNeverExpires $true​
```

<div class="toolbar" id="bkmrk--12"><div class="toolbar-item">  
</div></div>## Desktop Shortcut Windows 10

---

> Set objExplorer = CreateObject("InternetExplorer.Application")
> 
> With objExplorer
> 
>  .Navigate strPath
> 
>  .ToolBar = 1
> 
>  .StatusBar = 1
> 
>  .Width = 1000
> 
>  .Height = 593
> 
>  .Left = 1
> 
>  .Top = 1
> 
>  .Visible = 1
> 
>  .Navigate("http://localhost/Vida/")
> 
> End With