-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup-everything.sh
More file actions
42 lines (38 loc) Β· 1.36 KB
/
setup-everything.sh
File metadata and controls
42 lines (38 loc) Β· 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env bash
# Everything Search Setup Script for MCP
echo "π Setting up Everything Search for MCP integration..."
# Create directory for Everything tools
EVERYTHING_DIR="D:/dev/tools/Everything-SDK"
mkdir -p "$EVERYTHING_DIR"
echo "π₯ You'll need to manually download the following:"
echo "1. Everything (main application): https://www.voidtools.com/downloads/"
echo "2. Everything SDK: https://www.voidtools.com/support/everything/sdk/"
echo ""
echo "π Recommended setup:"
echo " - Install Everything to: C:/Program Files/Everything/"
echo " - Extract SDK to: $EVERYTHING_DIR/"
echo ""
echo "π― Expected SDK structure:"
echo " $EVERYTHING_DIR/"
echo " βββ dll/"
echo " β βββ Everything64.dll"
echo " β βββ Everything32.dll"
echo " βββ include/"
echo " βββ lib/"
echo ""
echo "βοΈ Environment variable needed:"
echo " EVERYTHING_SDK_PATH=$EVERYTHING_DIR/dll/Everything64.dll"
# Check if we can create the directory
if [ -d "D:/dev" ]; then
echo "β
D:/dev directory exists"
mkdir -p "$EVERYTHING_DIR"
echo "β
Created $EVERYTHING_DIR"
else
echo "β οΈ Creating D:/dev/tools/Everything-SDK..."
mkdir -p "$EVERYTHING_DIR"
if [ $? -eq 0 ]; then
echo "β
Created directory structure"
else
echo "β Failed to create directory. Please create manually."
fi
fi