Things I noticed here is :
You've trying to deploy two war files which is present in "D:\Test_Jboss\standalone\deployments"
* OrangeCountyDemo (2).war
* TestOrangeCountyDemo.war
From the below log entries,
>> 16:14:27,532 ERROR [org.jboss.as.controller.management-operation] (DeploymentScanner-threads - 2) Operation ("composite") failed - address: (undefined) - failure description: "JBAS014719: Invalid value specification OrangeCountyDemo (2).war"
Here deployment failed for "OrangeCountyDemo (2).war" file, please avoid white spaces in the deployment war file name. i.e., Rename the deployment file to "OrangeCountyDemo.war".
After the above deployment failed, jboss will try to create a .failed marker file for that deployment module. But it seems that you don't have write access to those directories.
All the below log entries says "Access is Denied",
>> 16:14:27,547 ERROR [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015004: Caught exception writing deployment marker file D:\Test_Jboss\standalone\deployments\Archive\OrangeCountyDemo.war.failed: java.io.FileNotFoundException: D:\Test_Jboss\standalone\deployments\Archive\OrangeCountyDemo.war.failed (Access is denied)
>> 16:14:27,563 ERROR [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015004: Caught exception writing deployment marker file D:\Test_Jboss\standalone\deployments\Archive\TestOrangeCountyDemo.war.failed: java.io.FileNotFoundException: D:\Test_Jboss\standalone\deployments\Archive\TestOrangeCountyDemo.war.failed (Access is denied)
>> 16:14:27,907 INFO [org.jboss.as.controller] (Controller Boot Thread) JBAS014774: Service status report JBAS014777: Services which failed to start: service jboss.logging.handler.FILE: org.jboss.msc.service.StartException in service jboss.logging.handler.FILE: java.io.FileNotFoundException: D:\Test_Jboss\standalone\log\server.log (Access is denied)
Please fix the permissions issue by giving recursive write access to "D:\Test_Jboss\standalone" directory.