diff --git a/scripts/license.html b/scripts/license.html
deleted file mode 100644
index 53e9ab195f..0000000000
--- a/scripts/license.html
+++ /dev/null
@@ -1,21 +0,0 @@
-
diff --git a/scripts/license.js b/scripts/license.js
deleted file mode 100644
index 01a21c06b3..0000000000
--- a/scripts/license.js
+++ /dev/null
@@ -1,21 +0,0 @@
-/*****************************************************************************
- * Open MCT Web, Copyright (c) 2014-2015, United States Government
- * as represented by the Administrator of the National Aeronautics and Space
- * Administration. All rights reserved.
- *
- * Open MCT Web is licensed under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0.
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations
- * under the License.
- *
- * Open MCT Web includes source code licensed under additional open source
- * licenses. See the Open Source Licenses file (LICENSES.md) included with
- * this source code distribution or the Licensing information page available
- * at runtime from the About dialog for additional information.
- *****************************************************************************/
diff --git a/scripts/licenses.sh b/scripts/licenses.sh
deleted file mode 100755
index 78190beeb8..0000000000
--- a/scripts/licenses.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-# Usage:
-# ./scripts/licenses.sh
-# e.g.
-# ./scripts/licenses.sh platform js scripts/license.js
-#
-# Note that this will ignore anything in a lib directory
-
-LICENSE=`cat $3`
-MATCHES=`find $1 -name "*.$2" | grep -v /lib/`
-
-for i in $MATCHES
-do
- cat "$3" "$i" > "$i".new && mv "$i".new "$i"
-done