Local Link
Local Link enables users to open files and folders directly from Curiosity Workspaces to their local file system or network drives.
Prerequisites
Architecture
Deployment Steps
3
4
Choose Deployment Method
$InstallPath = "C:\Program Files\CuriosityLink"
$SourcePath = "\\fileserver\share\CuriosityLink"
# Create directory if it doesn't exist
if (-not (Test-Path $InstallPath)) {
New-Item -ItemType Directory -Path $InstallPath -Force
}
# Copy files
Copy-Item "$SourcePath\Curiosity-Link.exe" -Destination $InstallPath -Force
Copy-Item "$SourcePath\*.curiosity-link.public-key.pem" -Destination $InstallPath -Force
# Register URI schemes
Start-Process -FilePath "$InstallPath\Curiosity-Link.exe" -ArgumentList "register" -Wait -NoNewWindowUser Experience
Security Considerations
Best Practices
Support
Common Issues
Testing Individual Components
Quick Reference
Last updated