diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py
index e6ea906b98283fd19f018bf40e9adc9913bdfbd5..f48f073b20e0e1ee95fd6e84e56baab23e722915 100755
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -526,11 +526,6 @@ def construct(self):
             # For textures
             self.path("openjpeg.dll")
 
-            # These need to be installed as a SxS assembly, currently a 'private' assembly.
-            # See http://msdn.microsoft.com/en-us/library/ms235291(VS.80).aspx
-            self.path("msvcp140.dll")
-            self.path("vcruntime140.dll")
-
             # SLVoice executable
             with self.prefix(src=os.path.join(pkgdir, 'bin', 'release')):
                 self.path("SLVoice.exe")
@@ -598,12 +593,6 @@ def construct(self):
                 self.path("snapshot_blob.bin")
                 self.path("v8_context_snapshot.bin")
 
-            # MSVC DLLs needed for CEF and have to be in same directory as plugin
-            with self.prefix(src=os.path.join(self.args['build'], os.pardir,
-                                              'sharedlibs', 'Release')):
-                self.path("msvcp140.dll")
-                self.path("vcruntime140.dll")
-
             # CEF files common to all configurations
             with self.prefix(src=os.path.join(pkgdir, 'resources')):
                 self.path("cef.pak")
diff --git a/indra/win_crash_logger/CMakeLists.txt b/indra/win_crash_logger/CMakeLists.txt
index 86aa655f03443dc99e5187e7c50c07e40e9860bb..4440f488a2e0707cd4ac993abe959cea8762f727 100644
--- a/indra/win_crash_logger/CMakeLists.txt
+++ b/indra/win_crash_logger/CMakeLists.txt
@@ -101,5 +101,3 @@ if (WINDOWS)
         LINK_FLAGS_DEBUG "/NODEFAULTLIB:\"LIBCMT;LIBCMTD;MSVCRT\""
         )
 endif (WINDOWS)
-
-ll_deploy_sharedlibs_command(windows-crash-logger)